您好,登錄后才能下訂單哦!
#計算輸入的時間為該年的第幾天
import time
t1 = input("請輸入時間(0000-00-00):")
t = time.strptime(t1,"%Y-%m-%d")
day = 0
for i in range(1,t.tm_mon):
if i in [1,3,5,7,8,10,12]:
day +=31
elif i in [4,6,9,11]:
day +=30
else:
day +=28
#閏年能被4整除但不能被100整除的年份,如果能被400整除也為閏年,要加1天
if ((t.tm_year @0 == 0) or ((t.tm_year % 4 == 0) and (t.tm_year % 100 != 0))) and t.tm_mon > 2:
day +=1
day = day + t.tm_mday #加上非正月的天數
print('這是這年的第 %d 天。' y)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。