-2

任何人都可以弄清楚下面的 python 代码是如何工作的,并给我一种将它移植到 Objective-C (iOS) 以在我自己的项目中工作的可能方法吗?

month_id = calendar.timegm(datetime(year, month, 1, hour, 0, 0).timetuple()) * 1000

万分感谢!

4

2 回答 2

1

calendar.timegm 将给定时间转换为自 1970 年以来的秒数。更多信息请访问http://docs.python.org/3/library/calendar.html?highlight=calendar.timegm#calendar.timegm

于 2012-11-27T07:15:00.370 回答
0

打开一个python解释器,然后输入:

>>> import calendar
>>> from datetime import datetime

然后输入你的代码行,你应该能得到一个不错的主意。

于 2012-11-27T07:01:18.983 回答