Python基础知识

一、判断文件是否存在

import os
ex = os.path.exists('1.txt')
print(ex) 
#output
True(Flase)

你可能感兴趣的:(Python基础知识)