1.python 检测文件是否存在
# 获取文件路径
file_path = os.getcwd() + '/account.txt'
# 判断文件是否存在
is_exist = os.path.exists(file_path)
print(is_exist)
1.python 检测文件是否存在
# 获取文件路径
file_path = os.getcwd() + '/account.txt'
# 判断文件是否存在
is_exist = os.path.exists(file_path)
print(is_exist)
本文标题:(技术)Python 技术小知识点
本文链接:https://www.haomeiwen.com/subject/cxtenctx.html
网友评论