Convert current time to utc time python with only using datetime package
本问题已经有最佳答案,请猛点这里访问。
将
1 2 | import time time.strftime("%Y") +"-" + time.strftime("%m") +"-" + time.strftime("%d") +"" + time.strftime("%H") +":" + time.strftime("%M") +":" + time.strftime("%S") |
使用
1 2 | from datetime import datetime time = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") |