博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python:每日一题004
阅读量:6415 次
发布时间:2019-06-23

本文共 2781 字,大约阅读时间需要 9 分钟。

 

题目:

输入某年某月某日,判断这一天是这一年的第几天?

程序分析:

以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊情况,闰年且输入月份大于2时需考虑多加一天

 

个人的思路及代码:

month_days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30,31 ]  while True:      year = input("请输入年份:").strip()      month = input("请输入月:").strip()      day = input("请输入天:").strip()      if not year.isdigit() or not month.isdigit() or not day.isdigit():          print("您的输入有误请重新输入!")          continue      else:          year = int(year)          month = int(month)          day = int(day)          if month > 12 or day > 31 or day < 0:              print("您的输入有误请重新输入!")              continue  ​          if (year % 4 == 0 and year %100 != 0) or year % 400 == 0:              if month > 2:                  index_day = sum(month_days[:month-1]) + day + 1              else:                  index_day = sum(month_days[:month-1]) + day          else:              index_day = sum(month_days[:month-1]) + day          print("这一天是一年中的第%s天" % index_day)

  

分析:这里考虑了大部分输入异常的情况,但是还是有输入错误但是不能检测出来的情况,比如输入4月31日不能检测出日期不正确。

 

 再次修改增加判断条件,检测大小月和2月的问题

month_days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30,31 ]while True:    year = input("请输入年份:").strip()    month = input("请输入月:").strip()    day = input("请输入天:").strip()    if not year.isdigit() or not month.isdigit() or not day.isdigit():        print("您的输入有误请重新输入!")        continue    else:        year = int(year)        month = int(month)        day = int(day)        if month > 12 or day > 31 or day < 0:            print("您的输入有误请重新输入!")            continue        elif month in [4,6,9,11] and day > 30 or month == 2 and day > 29:            print("您的输入有误请重新输入!")            continue        if (year % 4 == 0 and year %100 != 0) or year % 400 == 0:            if month > 2:                index_day = sum(month_days[:month-1]) + day + 1            else:                index_day = sum(month_days[:month-1]) + day        else:            if month == 2 and day > 28:                print("您的输入有误请重新输入!")                continue            index_day = sum(month_days[:month-1]) + day        print("这一天是一年中的第%s天" % index_day)

  

其他参考解答:

参考1

 
def leapyear(n):      return True if (n % 4 == 0 and n % 100 != 0) or n % 400 == 0 else False  ​  days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30 ]  year, month, day = [int(x) for x in input('input year/month/day: ').split('/')]  #直接用列表解析式获取三个数据  day2 = sum(days[:month - 1]) + day  if leapyear(year) and month > 2:      day2 += 1  print(day2)

  

参考2

import datetime  x=int(input("请输入年份xxxx:"))  y=int(input("请输入月份xx:"))  z=int(input("请输入日xx:"))  n1=datetime.date(x,y,z)  n2=datetime.date(x,1,1)  n3=n1-n2  n3=int(n3.days)+1  print("这是这一年的第%s天"%n3)

  

分析:这里用datetime模块避免了输入日期不正确的情况,如果输入不正确则直接报错。

 

(本文编号004,首发于2018年9月14日,修改于2018年9月15日)

转载于:https://www.cnblogs.com/Nicholas0707/p/9649471.html

你可能感兴趣的文章
espcms简约版的表单,提示页,搜索列表页
查看>>
GDI
查看>>
设备拨打电话
查看>>
学习笔记-七burpsuite的使用
查看>>
dom解析xml
查看>>
【leetcode】900. RLE Iterator
查看>>
Google JavaScript Style Guide
查看>>
ethtool
查看>>
POJ 1273 Drainage Ditches
查看>>
阻塞和非阻塞,同步和异步
查看>>
LINUX基础内容
查看>>
阿花宝宝 Java基础笔记 之 引用类型作为参数
查看>>
Echarts dataZoom缩放功能参数详解:
查看>>
实践作业
查看>>
JAVA中的TreeSet
查看>>
关于checked="checked"却不显示选中的“对勾”
查看>>
三、MySQL PHP 语法
查看>>
实现文件与目录快速遍历
查看>>
【洛谷 p3386】模板-二分图匹配(图论)
查看>>
Deferred Shading 延迟着色(翻译)
查看>>