gpt4 book ai didi

Python格式化Ctime方法

转载 作者:行者123 更新时间:2023-11-30 22:18:04 27 4
gpt4 key购买 nike

我正在尝试使用 os.path.getmtime() 获取文件的修改日期并将时间转换为人类可读的格式;建议使用 time.ctime() 方法,但它也给出了日期和月份的名称,这是我不想要的。

是否可以格式化%d %m %Y, %H:%M

目前我的代码如下:

import os.path, time

path = #path of the file

print time.ctime(os.path.getmtime(path))

最佳答案

您可以使用 datetime.fromtimestamp() 来做到这一点像:

代码:

file_time_string = dt.datetime.fromtimestamp(os.path.getmtime(__file__))

测试代码:

import os
import datetime as dt

file_time = dt.datetime.fromtimestamp(os.path.getmtime(__file__))
print(file_time.strftime("%d %m %Y, %H:%M"))

结果:

24 03 2018, 16:39

关于Python格式化Ctime方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49471004/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com