标签:%s int time -o use class path 相关 记录
import os
Path = os.getcwd()
print(‘本文件所在目录:‘+Path)
print(‘所在目录的上级目录‘+os.path.dirname(Path))
import os
path = os.getcwd()+os.sep+‘新建文件‘
#‘C:\\Users\\ASUS\\新建文件‘
import time
>>> time.strftime(‘%Y%m%d‘)
‘20200623‘
>>> time.strftime(‘%Y-%m%d‘)
‘2020-0623‘
>>> time.strftime(‘%Y-%m-%d‘)
‘2020-06-23‘
>>> time.strftime(‘%Y-%m-%d %H:%M:%S‘)
‘2020-06-23 20:44:55‘
标签:%s int time -o use class path 相关 记录
原文地址:https://www.cnblogs.com/emmm/p/13184371.html