python 怎么获取本年已过的月份并进行输出
时间: 2024-03-25 20:36:32 浏览: 139
python调用shell命令
你可以使用Python的datetime模块来获取当前年份和月份,然后使用for循环来输出本年已过的月份,代码如下:
```
import datetime
# 获取当前年份和月份
now = datetime.datetime.now()
year = now.year
month = now.month
# 输出本年已过的月份
for i in range(1, month):
print('{}年{}月'.format(year, i))
```
运行结果:
```
2022年1月
2022年2月
2022年3月
2022年4月
2022年5月
2022年6月
2022年7月
2022年8月
2022年9月
2022年10月
2022年11月
```
阅读全文