将 ctime 转换为 unicode 并将 unicode 转换为 ctime python
我已将 ctime 值转换为 unicode
1295478503.6789999 到 “2011 年 1 月 19 日星期三 18:08:23”
我可以倒退吗? 从第二行到第一行?
I have converted a ctime value to unicode
1295478503.6789999
to
'Wed Jan 19 18:08:23 2011'
Can I go backwards?
From the second line to the first?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 Python 时间模块,特别是 strptime() 函数。 (你是如何从 ctime 转换为 unicode/string 的?可能是用 time.strftime() 。所以寻找它的反方向是有意义的,即 time.strptime() 。)
这是一个很好的 Google 查询也: http://www.google.com/search?q= python+parse+time+string
示例:
You want the Python time module, specifically the strptime() function. (How'd you convert from ctime to unicode/string? Probably with time.strftime(). So it makes sense to look for the inverse direction of that, which is time.strptime().)
Here's a good Google query for this, too: http://www.google.com/search?q=python+parse+time+string
Sample: