2021年7月2日

摘要: os模块 os.path.exists('D:/xx') # 文件存在与否进行判断,也可以是文件夹。 存在返回True os.path.getctime('D:/xx') # 获取文件的创建时间 为time.time()类似的数字 os.path.isdir(path) # 此路径是目录还是文件 o 阅读全文
posted @ 2021-07-02 16:18 qev211 阅读(46) 评论(0) 推荐(0) 编辑
 
摘要: time # 1、时间戳 类型:浮点数 >>> time.time() 1625208594.7282684 # 2、时间字符串 >>> time.strftime("%Y-%m-%d %X") '2021-07-02 15:38:17' >>> time.strftime("%Y-%m-%d %H 阅读全文
posted @ 2021-07-02 16:08 qev211 阅读(43) 评论(0) 推荐(0) 编辑