python编写程序:输入某年某月某日,判断这一天是这一年的第几天?
时间: 2023-11-20 10:54:29 浏览: 93
这个Python程序可以帮助你输入某年某月某日,判断这一天是这一年的第几天。程序首先会判断输入的年份是否为闰年,然后根据输入的月份和日期计算出这一天是这一年的第几天,并输出结果。如果输入的日期不合法,程序会输出"date error!"。
代码如下(Python 3):
```
def is_leap_year(year):
# 判断闰年,是则返回True,否则返回False
return (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0)
print("输入某年某月某日,判断这一天是这一年的第几天?")
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
day = int(input("请输入天:"))
if month > 0 and month < 13 and day > 0 and day < 32:
days_of_month = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
if is_leap_year(year):
days_of_month[2] = 29
if month == 1:
result = day
else:
result = sum(days_of_month[:month]) + day
print("这是第%d天" % result)
else:
print("date error!")
```
阅读全文