为什么This Day Counter会产生错误的结果?

苏·D·奥尼姆

嗨,我是 Python 的初学者,目前在 PyCharm 上使用 Python 3.4.1。我最近做了一个计算两个日期之间的天数的项目,但是有两个问题。

def get_first_day():
    while True:
        try:
            print('First Date')
            day = int(input('Day:'))
            month = int(input('Month:'))
            year = int(input('Year:'))
            print(day, '/', month, '/', year)
            date = [day, month, year * 365]
            get_second_day(date)
        except ValueError:
            print('You were supposed to enter a date.')

 def get_second_day(date_1):
    while True:
       try:
           print('Second Date')
           day = int(input('Day:'))
           month = int(input('Month:'))
           year = int(input('Year:'))
           print(day, '/', month, '/', year)
           date = [day, month, year * 365]
           convert_dates_and_months(date_1, date)
       except ValueError:
           print('You were supposed to enter a date.')


def convert_dates_and_months(date_1, date_2):
    days_unfiltered = [date_1[0], date_2[0]]
    months_unfiltered = [date_1[1], date_2[1]]
    year = [date_1[2], date_2[2]]
    date_unfiltered = zip(days_unfiltered, months_unfiltered, year)
    for d, m, y in date_unfiltered:
        if m in [1, 3, 5, 7, 8, 10, 12]:
            a = 31
        elif m in [4, 6, 9, 11]:
            a = 30
        elif m in [2, 0] and int(y) % 4 is 0:
            a = 29
        else:
            a = 28
        m *= a
    days = list(filter(lambda x: 0 < x < (a + 1), days_unfiltered))
    months = list(filter(lambda x: 0 < x < 13, months_unfiltered))
    date_1 = [days[0], months[0], year[0]]
    date_2 = [days[1], months[1], year[1]]
    determine_date_displacement(date_1, date_2)


def determine_date_displacement(date_1, date_2):
    full_dates = zip(date_1, date_2)
    days = -1
    for k, v in full_dates:
        days += (int(v) - int(k))
    if days < 0:
        days *= -1
    print(days)


get_first_day()

第一个问题是计数器返回两个日期之间的天数不正确。第二个是 def get_second_day 由于某种原因在最后重复。我会告诉你我的意思:

First Date
Day:10
Month:09
Year:03
10 / 9 / 3

Second Date
Day:06
Month:06
Year:06
6 / 6 / 6

1087

Second Date
Day:

我确实知道 10/09/03 和 06/06/06 之间正好有 1,000 天,但该项目返回了 1,087 天。

如果有人能解释为什么这个项目返回的数字不正确,以及为什么它要求我在最后再次填写第二个日期,那就太完美了。

由于这是我的第一个问题,而且我是 Python 的初学者,因此对于在这个问题中看到的任何奇怪的措辞/不良做法,我提前道歉。

帕特里克·阿特纳

问题1:

您的闰年计算已关闭:

闰年years % 4 == 0但仅限于年份,year % 100 == 0除非它们也是year % 400 == 0

2004,2008,2012 : leap year (%4==0, not %100==0)
1700,1800,1900 : no leap year (%4 == 0 , % 100 == 0 but not %400 == 0)
1200,1600,2000 : leap years (* 1200 theor. b/c gregorian cal start)

问题2:

在您的输入中,您将年份乘以 365,不检查闰年 - 他们应该有 366 天,但得到 365 - 这将导致在计算闰年的天数时缺少天数(ed)。

问题 3:

你有一个控制流问题:get_second_day()重复,因为你这样做:

get_first_date()
    while without end:
        do smth
        call get_second_date(..)
             while without end:
                 do smth 
                 call some calculation functions
                     that calc and print and return with None 
                 back in get_second_date(), no break, so back to the beginning
                 of its while and start over forever - you are TRAPPED
  • 通过breakconvert_dates_and_months(date_1, date)里面放一个after 来修复它get_second_day(..)

建议:

您可以通过减少之间的重复代码的数量简化输入get_first_day()get_second_day()-这遵循DRY原则(d on't [R EPEAT Ÿ我们自己):

def getDate(text):
    while True:
        try:
            print(text)
            day = int(input('Day:'))
            month = int(input('Month:'))
            year = int(input('Year:'))
            print(day, '/', month, '/', year)
            return [day, month, year * 365]  # see Problem 2
        except ValueError:
            print('You were supposed to enter a date.')


def get_first_day():
    date1 = getDate("First Date")
    # rest of code omitted 

def get_second_day(date_1):
    date = getDate("Second Date")
    # rest of code omitted 

更好的解决方案是使用datetime 和 datettime-parsing,特别是如果您想处理输入验证和闰年估计,则需要进行更多检查。

使用datetime模块可以大大简化这一点:

import datetime

def getDate(text):
    while True:
        try:
            print(text)
            day = int(input('Day:'))
            month = int(input('Month:'))
            year = int(input('Year (4 digits):'))
            print(day, '/', month, '/', year)

            # this will throw error on invalid dates: 
            # f.e. 66.22.2871 or even (29.2.1977) and user
            # gets a new chance to input something valid
            return datetime.datetime.strptime("{}.{}.{}".format(year,month,day),"%Y.%m.%d")
        except (ValueError,EOFError):
            print('You were supposed to enter a valid date.')


def get_first_day():
    return getDate("First Date")

def get_second_day():
    return getDate("Second Date")

# while True: # uncomment and indent next lines to loop endlessly
first = get_first_day()     # getDate("First Date") and getDate("Second Date") 
second = get_second_day()   # directly would be fine IMHO, no function needed
print( (second-first).days) 

输出:

First Date
Day:10
Month:9
Year (4 digits):2003
10 / 9 / 2003
Second Date
Day:6
Month:6
Year (4 digits):2006
6 / 6 / 2006
1000 

好读物:如何调试小程序 (#1) - 遵循它,至少可以引导您解决控制流问题。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章

为什么我的总时间公式会产生错误的结果?

在n> 47之后,为什么我计算woodall数的程序为什么会产生错误的结果?

为什么代码会产生以下结果?

为什么此代码会产生错误?

为什么 TextInputEditText 会产生此错误?

为什么这种转换会产生错误?

为什么此计算产生错误的结果?

为什么这种错误的python格式会产生此结果,而不是异常?

为什么使用引号时“ wsl”会产生不同的结果?

为什么使用super会产生此结果

为什么使用getClientRects()的相同代码会产生不同的结果?

为什么这个cuda内核会产生不确定的结果?

为什么“大于”数字比较会产生意外结果

为什么不同的scrypt实现会产生不同的结果?

SQL在从句中,为什么会产生不同的结果?

为什么在Excel中查找会产生意外结果?

为什么这些作业会产生不同的结果?

为什么类型/ var为null会产生不同的结果?

为什么==和equals会产生不同的结果?

为什么更新优化器会产生不好的结果?

为什么mySQL查询会产生意外结果?

为什么确定系数R²实现会产生不同的结果?

为什么 VSM Depth Map Blurring 会产生奇怪的结果?

为什么Python的“ .split()和”“ .split(”,“)会产生不同的结果?

为什么嵌套嵌套循环会产生奇怪的结果?

为什么我的Cypher查询会产生不同的结果?

为什么这个几乎相同的代码会产生不同的结果

为什么在单个 Jest-Enzyme 测试用例中进行多个断言会产生错误的测试结果?

PHP:为什么ERROR常量会产生错误?