2019-03-18 Python time 将2015年11月20日转换为2015-11-20

    #ReportingDate = soup.select('body > div.main > div > div.ctr > div.recruit > ul > li > a')[0].text.split('(')[-1].split(')')[0]
    ReportingDate ="2015年11月20日"
    array = time.strptime(ReportingDate, u"%Y年%m月%d日")
    try:
        ReportingDates = time.strftime("%Y-%m-%d", array)
    except Exception as e:
        print(e)

  

猜你喜欢

转载自www.cnblogs.com/theDataDigger/p/10553782.html