码迷,mamicode.com
首页 > 其他好文 > 详细

课堂练习

时间:2019-01-02 12:33:34      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:result   lse   res   return   class   +=   def   list   div   

def date(x,y,z):
    list1 = [31,29,31,30,31,30,31,31,30,31,30,31]
    list2 = [31,28,31,30,31,30,31,31,30,31,30,31]
    z += 1
    if x % 4 == 0 or x % 100 == 0 or x % 400 == 0:
        if z > list1[y-1]:
            z = 1
            y += 1
            if y > 12:
                x += 1
                y = 1
                z = 1
    else:
        if z > list2[y-1]:
            z = 1
            y += 1
            if y > 12:
                x += 1
                y = 1
                z = 1
    return (x,y,z)

x=int(input(‘请输入年:‘))
y=int(input(‘请输入月:‘))
z=int(input(‘请输入日:‘))
result = date(x,y,z)
print(‘输入日期的下一天是:%d年%d月%d日‘% result)

  

课堂练习

标签:result   lse   res   return   class   +=   def   list   div   

原文地址:https://www.cnblogs.com/juzipishui/p/10207269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!