from datetime import datetime,timedelta ss = ' Mon, 01 Jul 2019 08:24:31 ' a = datetime.strptime(ss, " %a, %d %b %Y %H:%M:%S ")-timedelta(hours=8) a = str(a).replace('-','年',1).replace('-','月',1) print("a",a)
UTC时间比北京时间提前八个小时,所以使用timedelta方法减去八个小时就可以了
而replace方法它可以有三个参数,old,new,max
max就是替换几次,默认全部