簡體   English   中英

兩個日期之間的Python差異

[英]Python difference between two dates

由於某種原因,我真的為這個(相對性)問題感到困惑。

如何計算兩個日期之間的差異。 我想這樣做而不使用模塊。 但是由於某種原因,我的代碼沒有輸出正確的答案。

這是我的思考過程:

如果需要,請計算2014年12月10日至2015年2月2日之間的天數。

  1. 首先找到(31-10)的10日從12月剩下的天數= 21天

  2. 找出12月至2月(又稱1月)之間的月數,加上該月的天數= 31天

  3. 加上12月(21)剩下的天數+月份之間的天數(31)+上個月的天數(2)= 54天。

  4. 然后檢查異常,例如Le年等。

這是我的功能:

def Calculate_Date (year1, month1, day1, year2, month2, day2):
"""
This function takes to dates (year/month/day) and returned the
difference between the dates
"""

#Create a dict for the # of days in each month
month_days = {1:31,2:28,3:31,4:30,5:31,6:30,7:31,8:31,9:30,10:31,11:30,12:31}

days_left_in_month1 = month_days[month1] - day1
days_left_in_year1 =0 
days_into_year2 =0
days_between_year1_and_year2= 0
difference_in_days = 0

# Find the number days left in year one
i = month1
days_left_in_year = []
while i <= 12:
    days = month_days[i]
    days_left_in_year.append(days)
    i = i + 1

days_left_in_year1 = (sum(days_left_in_year)) - day1

# Find the number days into year two
i = 1
days_into_year = []
while i <= month2:
    days = month_days[i]
    days_into_year.append(days)
    i = i + 1
days_into_year2 = sum(days_into_year) - day2

#find the differernce in years 
days_between_year1_and_year2 = (year2 - year1) * 365


#Check if its a leap year
leap_year = False
while True:
    if float(year1 % 4) == 0:
        if float(year1 % 100) != 0:
                leap_year = True
                break
        if float(year1 % 100) == 0:
            if float(year1 % 400) ==0:
                leap_year = True
                break               
    else:
        break

#test output
print "The number of days left in the year One are %r " % days_left_in_year1
print "The number of days into the year Two are %r "    % days_into_year2
print "The number of days between the years are %r "    % days_between_year1_and_year2

#add an increment if leap year was true
if leap_year == True:
    difference_in_days = days_left_in_year1 + days_into_year2 + days_between_year1_and_year2 + 1

else:
    difference_in_days = days_left_in_year1 + days_into_year2 + days_between_year1_and_year2

return difference_in_days


print Calculate_Date(2011,6,30,2012,06,30)

與執行date2 - date1 ,您可能會發現它更容易執行(date2 - x) - (date1 - x) ,其中x是易於處理的日期,即year1 “ Jan 0”。


讓我們定義幾個函數:

def days_in_month(year, month):
    """
    Return number of days in the specified month (28, 29, 30, or 31)
    """
    if month == 2:    # February
        if not (year % 400):
            return 29
        elif not (year % 100):
            return 28
        elif not (year % 4):
            return 29
        else:
            return 28
    elif month in {1, 3, 5, 7, 8, 10, 12}:
        return 31
    else:
        return 30

def days_in_year(year):
    """
    Return the number of days in the specified year (365 or 366)
    """
    return 337 + days_in_month(year, 2)

def days_this_year(year, month, day):
    """
    Return the number of days so far this year
    """
    return sum(days_in_month(year, m) for m in range(1, month)) + day

def year_days_since(base_year, this_year):
    """
    Return the number of days from the start of base_year to the start of this_year
    """
    if base_year > this_year:
        raise ValueError("base_year must be <= this_year")
    elif base_year == this_year:
        return 0
    else:
        return sum(days_in_year(y) for y in range(base_year, this_year))

那么兩個日期之間的差變為:

def date_diff(y1, m1, d1, y2, m2, d2):
    x = min(y1, y2)   # base date
    days1 = year_days_since(x, y1) + days_this_year(y1, m1, d1)
    days2 = year_days_since(x, y2) + days_this_year(y2, m2, d2)
    return days2 - days1

由於此答案的對稱性,它也會很高興地帶來負面影響:

date_diff(2001, 1, 3, 2002, 2, 5)   # =>  398 == 365 + 31 + 2
date_diff(2002, 2, 5, 2001, 1, 3)   # => -398

如果這是一個真實的代碼,而不是學校的作業,這就是我要做的方式:

from datetime import date

def date_diff(y1, m1, d1, y2, m2, d2):
    return (date(y2, m2, d2) - date(y1, m1, d1)).days

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM