摘要:
datetime提供了一些常用的方法。以下是一些常用的 datetime 方法: 1.datetime.datetime.now(): 获取当前时间。例如:datetime.datetime.now() 返回当前时间的 datetime 对象。 #test_demo.py import dateti 阅读全文
2023年5月27日
摘要:
os.path 模块主要用于用于处理文件路径和文件名 1. os.path.abspath -返回指定路径的绝对路径。例如:os.path.abspath('test.txt') 返回 /home/user/test.txt。 1.1 os.path.abspath(__file__) -返回当前文 阅读全文