python-字符型转换成时间戳(str转换成timestamp)

廖雪峰官网-datetime练习题:
假设你获取了用户输入的日期和时间如2015-1-21 9:01:30,以及一个时区信息如UTC+5:00,均是str,请编写一个函数将其转换为timestamp:

from datetime import datetime, timezone, timedelta
def to_timestamp(dt_str, tz_str):
    t,tz=dt_str,tz_str
    tz=tz.split(':')[0].split('+')
    #str转换成datetime
    t=datetime.strptime(t,'%Y-%m-%d %H:%M:%S')
    #datetime添加时区
    utc_dt=t.replace(tzinfo=timezone(timedelta(hours=int(tz[1]))))
    #datetime转换成timestamp
    return utc_dt.timestamp()    

t=to_timestamp('2015-6-1 08:10:30', 'UTC+7:00')
print(t)

你可能感兴趣的:(python,str转换成timestamp,datetime添加时区)