Python知识点记录
2021-05-07 10:27
标签:%s int time -o use class path 相关 记录 Python知识点记录 标签:%s int time -o use class path 相关 记录 原文地址:https://www.cnblogs.com/emmm/p/13184371.html1.路径相关
1.1 获取目录
import os
Path = os.getcwd()
print(‘本文件所在目录:‘+Path)
print(‘所在目录的上级目录‘+os.path.dirname(Path))
1.2 获取当前系统下的路径间隔符(用于路径拼接) os.sep
import os
path = os.getcwd()+os.sep+‘新建文件‘
#‘C:\\Users\\ASUS\\新建文件‘
2.时间相关
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‘