在Python中,如何獲得當前UTC時間加上30分鐘?Python:當前UTC加30分鐘
我嘗試這樣做:
>>> import datetime
>>> future = datetime.datetime.now() + datetime.timedelta(seconds=30*60)
>>> str(datetime.timedelta(seconds=future))
'16133 days, 17:54:08' ----> output
我不知道這是正確的(我敢肯定,我錯了,巨蟒福利局這裏)。
現在向你的本地時間不UTC時間。 – sabbahillel