【Python】输入年月,输出这个月的天数

  • Post author:
  • Post category:python


问题:输入年月,输出这个月的天数

效果:

请输入一个年份2000
请输入一个月份2
此月有28天

进程已结束,退出代码 0

代码:

year=int(input("请输入一个年份"))
if((year%4==0and(year%100)!=0)or(year%400==0)):
 
   month=int(input("请输入一个月份"))
   if(month==1 or month==3 or month==5 or month==7 or month==8 or month==10 or month==12):
    print("此月有31天")
   elif(month==2):
     print("此月有28天")
   else:
     print("此月有30天")
else:
    month=int(input("请输入一个月份"))
    if(month==1 or month==3 or month==5 or month==7 or month==8 or month==10 or month==12):
       print("此月有31天")
    elif(month==2):
       print("此月有29天")
    else:
       print("此月有30天")



版权声明:本文为weixin_44821492原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。