在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Python 操练 实例4标题 :输进 某年某月某日,判定 这一天是这一年的第几天? 法式 剖析 :以3月5日为例,应当 先把前两个月的加起来,然后再加上5天即今年 的第几天,特别 情形 ,闰年且输进 月份年夜 于3时需斟酌 多加一天: 法式 源代码: #!/usr/bin/python # -*- coding: UTF-8 -*- year = int(raw_input('year:n')) month = int(raw_input('month:n')) day = int(raw_input('day:n')) months = (0,31,59,90,120,151,181,212,243,273,304,334) if 0 < month <= 12: sum = months[month - 1] else: print 'data error' sum += day leap = 0 if (year % 400 == 0) or ((year % 4 == 0) and (year % 100 != 0)): leap = 1 if (leap == 1) and (month > 2): sum += 1 print 'it is the %dth day.' % sum 以上实例输出成果 为: year: 2015 month: 6 day: 7 it is the 158th day. |
请发表评论