您好,登錄后才能下訂單哦!
小編給大家分享一下Python判斷是哪一天的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
python判斷是哪一天的:
方法1:先判斷是否是閏年,然后再利用求和,得出某一天是第幾天
# 方法1:low版 def func1(year, month, day): # 分別創建平年,閏年的月份天數列表(注意列表下標從0開始,而月份是從1月開始,所以1月份對應的下標是0) leap_year = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # 閏年 no_leap_year = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # 判斷是否是閏年 if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0: # 對列表進行切片處理,獲取該月份及之前的所有月份,并對月份天數求和,最后再加上該月份的某一日,即可獲得該日期是一年中的第幾天 result = sum(leap_year[:month - 1]) + day return result else: result = sum(no_leap_year[:month - 1]) + day return result print(func1(2019, 6, 20)) # 171
方法2:使用datetime模塊
# 方法2 datetime模塊 import datetime def func2(y, m, d): sday = datetime.date(y, m, d) # print(type(sday), sday) # <class 'datetime.date'> 2019-06-20 # print(sday.month) # 6 count = sday - datetime.date(sday.year - 1, 12, 31) # 減去上一年最后一天 # 2017-12-31 print(count, type(count)) # 171 days, 0:00:00 <class 'datetime.timedelta'> return '%s是%s年的第%s天' % (sday, y, count.days) print(func2(2019, 6, 20)) # 171
方法3:使用內置函數strftime
strftime是一種計算機函數,根據區域設置格式化本地時間/日期,函數的功能將時間格式化,或者說格式化一個時間字符串。
# 方法3 import datetime def func3(year, month, day): date = datetime.date(year, month, day) return date.strftime('%j') # %j十進制表示的每年的第幾天 print(func3(2019, 6, 20)) # 171
看完了這篇文章,相信你對Python判斷是哪一天的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。