def getDateAndTime(seconds=None): """ Converts seconds since the Epoch to a time tuple expressing UTC. When 'seconds' is not passed in, convert the current time instead. :Parameters: - `seconds`: time in seconds from the epoch. :Return: Time in UTC format."""return time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime(seconds))`
这会将当地时间转换为UTC
time.mktime(time.localtime(calendar.timegm(utc_time)))
http://feihonghsu.blogspot.com/2008/02/converting-from-local-time-to-
utc.html
如果使用mktime将struct_time转换为自大纪元以来的秒数,则此转换 位于本地时区中
。没有办法告诉它使用任何特定的时区,甚至不使用UTC。标准的“时间”包始终假定时间在您当地的时区中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)