python代码根据时间获取周数(week of the year)
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python代码根据时间获取周数(week of the year)相关的知识,希望对你有一定的参考价值。
python代码根据时间获取周数(week of the year)
# 使用python获取当前是当年的第多少周
import time
import datetime
# 获取今天是第几周
print(datetime.datetime.now())
print(time.strftime('%W'))
# 获取当前是周几(0-6,0代表周一)
today=datetime.datetime.now().weekday()
# 获取指定日期属于当年的第几周
print(today)
week=datetime.datetime.strptime('20210520','%Y%m%d').strftime('%W')
print(week)
2021-06-12 14:53:24.853411 23 5 20
参考:https://github.com/geekcomputers/Python
参考:python根据时间获取周数代码实例
参考:python documentation
以上是关于python代码根据时间获取周数(week of the year)的主要内容,如果未能解决你的问题,请参考以下文章