(技术)Python 技术小知识点
2019-12-17 本文已影响0人
点映文艺
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)