python获取某天的属于第几周等时间问题

简介: import timefrom datetime import datetime#52 今天是52周print(time.
import time
from datetime import datetime

#52 今天是52周
print(time.strftime("%W"))
#2,因为今天是周三,周一是0
today = datetime.now().weekday()
print(today)
#52 20171225是52周
week = datetime.strptime("20171225","%Y%m%d").strftime("%W")
print(week)

未完待续

目录
相关文章
|
网络安全 Python
Python:获取ssl证书信息和到期时间
Python:获取ssl证书信息和到期时间
512 0
|
机器学习/深度学习 Python
Python中LSTM回归神经网络的时间序列预测
Python中LSTM回归神经网络的时间序列预测
586 2
Python中LSTM回归神经网络的时间序列预测
|
存储 Python
datetime库:Python日期与时间值管理计算(二)
datetime库:Python日期与时间值管理计算(二)
357 1
datetime库:Python日期与时间值管理计算(二)
|
C++ Python
Acwing 游戏时间 C++ python
Acwing 游戏时间 C++ python
88 0
Acwing 游戏时间 C++ python
python 如何将时间输出为年月的形式
python 如何将时间输出为年月的形式
python 如何将时间输出为年月的形式
|
索引 Python
python——时间模块
python——时间模块
python——时间模块
|
算法 Python
考点:角度旋转、海龟坐标轴以及简单时间绘图算法以及海龟的定时器ontimer【Python习题10】
考点:角度旋转、海龟坐标轴以及简单时间绘图算法以及海龟的定时器ontimer【Python习题10】
184 0
考点:角度旋转、海龟坐标轴以及简单时间绘图算法以及海龟的定时器ontimer【Python习题10】
|
Python
datetime库:Python日期与时间值管理计算(一)
datetime库:Python日期与时间值管理计算(一)
227 0
datetime库:Python日期与时间值管理计算(一)
|
编解码 Unix 知识图谱
time库:Python的时间时钟处理
time库:Python的时间时钟处理
309 0
time库:Python的时间时钟处理