資訊內(nèi)容
Python基礎(chǔ)練習(xí)實例4(年月日算天數(shù))
題目:輸入某年某月某日,判斷這一天是這一年的第幾天?
程序分析:以2018年3月1日為例,應(yīng)該先把前兩個月的加起來(按月分,用一個數(shù)組存儲之前的天數(shù)),然后再加上5天即本年的第幾天,特殊情況,閏年且輸入月份大于2時需考慮多加一天:
程序源代碼:
實例(Python 2.0+)
#!/usr/bin/python
# -*- coding: UTF-8 -*-
year = int(raw_input('year:\n'))
month = int(raw_input('month:\n'))
day = int(raw_input('day:\n'))
months = (0,31,59,90,120,151,181,212,243,273,304,334)
if 0 < month <= 12:
sum = months[month - 1]
else:
print 'data error'
sum += day
leap = 0
if (year % 400 == 0) or ((year % 4 == 0) and (year % 100 != 0)):
leap = 1
if (leap == 1) and (month > 2):
sum += 1
print 'it is the %dth day.' % sum
運行結(jié)果:
本站部分內(nèi)容轉(zhuǎn)載自網(wǎng)絡(luò),如有侵權(quán)請聯(lián)系管理員及時刪除。
