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

Posted theDataDigger

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2019-03-18 Python time 将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)

  

以上是关于2019-03-18 Python time 将11月20日转换为2015-11-20的主要内容,如果未能解决你的问题,请参考以下文章

Python随笔之常用模块-time模块

python时间处理之time模块

python time

python学习之time模块

python小总结2(time,os)

Python基础-----time时间模块