python 获取时间代码

        year = int(time.strftime('%Y', time.localtime()))
        month = int(time.strftime('%m', time.localtime()))
        day = int(time.strftime('%d', time.localtime()))
        now = datetime.date(year, month, day)
        week = now.isocalendar()[1]
week = now.isocalendar()[1]
得到当前第几周.
now.isocalendar()[2] 星期几

原文地址:https://www.cnblogs.com/foreveryl/p/2879774.html