终于自己写出了首个独立完成的python的程序,虽然也许编写的方法不是很完美,但至少功能有了。。。
题目是 “先输入一个年份,再输入一个月份,最终要输出该月的天数”。
在这个题目里要考虑到一个因素,那就是闰年的问题。
本人正好2月29日出生,独立诞生出这个程序也是有意义的嘛!
year = int((input(‘请输入年份’)))
moon = int((input(‘请输入月份’)))
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0 and year % 3200 != 0) or year % 172800 == 0 :
years = int(‘0’)
else:
years = int(‘1’)
if moon is 2 and years is 0 :
print(‘该月是29天’)
if moon is 2 and years is 1:
print(‘该月是28天’)
else:
if moon in (1,3,5,7,8,10,12):
print(‘该月是31天’)
if moon in (4,6,9,11):
print(‘该月是30天’)