美文网首页
(技术)Python 技术小知识点

(技术)Python 技术小知识点

作者: 点映文艺 | 来源:发表于2019-12-17 16:30 被阅读0次
    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