写一个存储程序并运行查看结果:判断当前系统时间为哪个季节(春夏秋冬)
时间: 2024-02-03 12:11:36 浏览: 94
能够显示当前系统时间
这是一个Python程序,需要安装Python环境才能运行。
```python
import datetime
# 获取当前系统时间
now = datetime.datetime.now()
# 判断季节
if now.month in [3, 4, 5]:
season = '春'
elif now.month in [6, 7, 8]:
season = '夏'
elif now.month in [9, 10, 11]:
season = '秋'
else:
season = '冬'
# 输出结果
print('现在是{}季节'.format(season))
```
运行结果会根据当前时间而不同。
阅读全文