实例4:检查文件是否存在——非常实用的Python代码
当前位置:首页 > 技术交流
实例4:检查文件是否存在——非常实用的Python代码

本站编辑

2022/7/12 0:00:00

Python有专门处理系统交互的模块—os,它可以处理文件的各种增删改查操作。


代码如下:


from os import path
def check_for_file():
    print("Does file exist:",path.exists("data.csv"))
if __name__=="__main__":
    check_for_file()



 

输出结果:


Does file exist: False

还可以输入200个字

蝈蝈派【海南省教改项目(Hnjg2022-80)支持】 网站版权所有

Python remained the copyright of our website

吉公网安备 22020402000437号

备案号:吉ICP备2020005062号-2

关注QQ群

了解Python

实时动态