我有数据,在该数据中,时间日期格式为2017-11-01 00:00:00-04:00。我想去掉-4:00,必须使用剩余的。我什么都做了,就是没有成功。
wa7juj8i1#
from datetime import datetime date_string = '2017-11-01 00:00:00-04:00' date = datetime.strptime(date_string, '%Y-%m-%d %H:%M:%S%z') print(date) # Returns: 2017-11-01 00:00:00-04:00 print(date.strftime("%Y-%m-%d %H:%M:%S")) # Retruns: 2017-11-01 00:00:00
1条答案
按热度按时间wa7juj8i1#