我是新的 Python 。我一度陷入困境。我有变量,将时间存储为具有指定时区的字符串。
看起来如下所示
>>> print usertime
2017-08-18T08:00:00+04:30
>>> type(usertime)
<type 'str'>
所以我只想将usertime
时间转换为utc时间,输出应从4 hours and 30 minutes
中减去2017-08-18T08:00:00
。输出转换看起来像:2017-08-18T03:30:00
,符合utc格式。