将 ctime 转换为 unicode 并将 unicode 转换为 ctime python

发布于 2024-10-13 15:22:33 字数 116 浏览 6 评论 0原文

我已将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

残月升风 2024-10-20 15:22:33

您需要 Python 时间模块,特别是 strptime() 函数。 (你是如何从 ctime 转换为 unicode/string 的?可能是用 time.strftime() 。所以寻找它的反方向是有意义的,即 time.strptime() 。)

这是一个很好的 Google 查询也: http://www.google.com/search?q= python+parse+time+string

示例:

entropy:~>python
Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49) 
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> u = u'Wed Jan 19 18:08:23 2011'
>>> t = time.strptime(u)
>>> t
time.struct_time(tm_year=2011, tm_mon=1, tm_mday=19, tm_hour=18, tm_min=8, tm_sec=23, tm_wday=2, tm_yday=19, tm_isdst=-1)
>>> time.mktime(t)
1295489303.0

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:

entropy:~>python
Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49) 
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> u = u'Wed Jan 19 18:08:23 2011'
>>> t = time.strptime(u)
>>> t
time.struct_time(tm_year=2011, tm_mon=1, tm_mday=19, tm_hour=18, tm_min=8, tm_sec=23, tm_wday=2, tm_yday=19, tm_isdst=-1)
>>> time.mktime(t)
1295489303.0
等你爱我 2024-10-20 15:22:33
import time
time.mktime(time.strptime('Wed Jan 19 18:08:23 2011'))
import time
time.mktime(time.strptime('Wed Jan 19 18:08:23 2011'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文