用python语言输入一个月份数字(1-12),输出对应月份的名称缩写
时间: 2024-05-11 12:17:01 浏览: 127
python输出指定月份日历的方法
好的,针对您的问题,可以使用以下Python代码来实现:
```python
month = int(input("请输入月份数字(1-12):"))
if month == 1:
print("Jan")
elif month == 2:
print("Feb")
elif month == 3:
print("Mar")
elif month == 4:
print("Apr")
elif month == 5:
print("May")
elif month == 6:
print("Jun")
elif month == 7:
print("Jul")
elif month == 8:
print("Aug")
elif month == 9:
print("Sep")
elif month == 10:
print("Oct")
elif month == 11:
print("Nov")
elif month == 12:
print("Dec")
else:
print("输入有误,月份数字应在1-12之间!")
```
利用if-elif-else语句,根据用户输入的月份数字进行判断,输出对应的月份名称缩写。
希望能够帮助到您,如有疑问请随时提出。
阅读全文