Questions tagged «strftime»


15
将Unix时间戳字符串转换为可读日期
我有一个表示Python中的unix时间戳的字符串(即“ 1284101485”),我想将其转换为可读的日期。使用时time.strftime,我得到TypeError: >>>import time >>>print time.strftime("%B %d %Y", "1284101485") Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: argument must be 9-item sequence, not str


8
使用strftime将python datetime转换为纪元
我在UTC有一个时间,我想要从纪元开始经过的秒数。 我正在使用strftime将其转换为秒数。以2012年4月1日为例。 >>>datetime.datetime(2012,04,01,0,0).strftime('%s') '1333234800' 从纪元开始的UTC时间为2012年4月1日,但以上返回1333234800,相差1小时。 因此,看来strftime正在考虑我的系统时间,并在某处应用了时区偏移。我以为日期时间纯粹是天真的? 我该如何解决?如果可能,除非标准,否则避免导入其他库。(我有可移植性问题)。
209 python  datetime  utc  epoch  strftime 

8
在Python中将%f与strftime()结合使用可获取微秒
我想使用的strftime()以微秒级精度,这似乎可以使用%F(为说明这里)。但是,当我尝试以下代码时: import time import strftime from time print strftime("%H:%M:%S.%f") ...我得到小时,分钟和秒,但%f打印为%f,没有微秒的迹象。我在Ubuntu上运行Python 2.6.5,所以应该没问题,应该支持%f(据我所知,它在2.6及更高版本中受支持。)
112 python  time  strftime 

7
如何在熊猫中更改日期时间格式
我的数据框有一个DOB列(示例格式1/1/2016),默认情况下该列会转换为dtype'object'熊猫:DOB object 使用将日期转换为日期格式df['DOB'] = pd.to_datetime(df['DOB']),日期将转换为:2016-01-26,日期dtype为:DOB datetime64[ns]。 现在,我想将此日期格式转换为01/26/2016任何其他通用日期格式或。我该怎么做? 无论我尝试哪种方法,它始终以2016-01-26格式显示日期。

1
T和Z在时间戳中到底意味着什么?
我有这个时间戳值由Web服务返回 "2014-09-12T19:34:29Z" 我知道这意味着时区,但是那到底是什么意思呢? 而且我正在尝试模拟此Web服务,因此有没有办法strftime在python中使用生成此时间戳的方法? 很抱歉,如果这很明显,但Google的帮助不是很大,strftime()参考页面也没有。 我目前正在使用这个: x.strftime("%Y-%m-%dT%H:%M:%S%Z") '2015-03-26T10:58:51'

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.