Python實現的簡單萬年曆例子分享

2022-10-05 00:15:21 字數 2274 閱讀 5775

複製** **如下:

#!/usr/bin/env python2

#-*- coding:utf-8 -*-

__author__ = 'jalright'

"""使用python實現萬年曆

"""def is_leap_year(year):

"""判斷是否是閏年,返回boolean值

"""if year/4==0 and  year/400 !=0:

return true

elif year/100 == 0 and year/400 ==0 :

return true

else:

return false

def getmonthdays(year,month):

"""獲取指定年月的月份有多少天

"""days = 31        #31天居多,設定為預設值

if month == 2 :    #2月份要判斷是否是閏年

if is_leap_year(year):

days=29

else:

days=28;

elif month in [4,6,9,11]:     #判斷小月,只有30天

days=30

return days

def gettotaldays(year,month):

"""獲取1990-01-01離現在有多少天,1990-01-01是星期一,以這個為標準來判斷星期

"""totaldays=0

for i in range(1990,year):     #使用range來迴圈,算出多少年多少天

if is_leap_year(i):        #判斷是否是閏年

totaldays += 366

else:

totaldays += 365

for i in range(1,month):       #使用range迴圈,算出今年前面幾個月過了多少天

&nwww.cppcns.combsp;     totaldays +=getmonthdays(year,i)

return totaldays

if __name__ == '__main__':

while true:                                 #迴圈判斷是否輸入錯誤的格式

print "python實現萬年曆"

year = raw_input("請輸入年份(如:1990):")

month = raw_input("請輸入月份:如:1")

&nbs程式設計客棧p;  &n程式設計客棧bsp;    try:                                    #捕捉輸入異常格式和月份的正確

year = int(year)

month = int(month)

if month <1 or month >1:        &nb程式設計客棧sp;   #判斷月份是否輸入錯誤,錯誤就重新開始迴圈

print "年份或者月份輸入錯誤,請重新輸入!"

continue

except:                                 #捕捉到轉換成整型異常,輸出提示,重新開始迴圈

print "年份或者月份輸入錯誤,請重新輸入!"   

continue

break     #如果沒有異常就跳出迴圈

#if is_leap_year(year):

#    print "%s是潤年"%year

#else:

#    print "%s是平年"%year

程式設計客棧  #print "%s月份總共有%s天!"%(month,getmonthdays(year,month))

print "日\t一\t二\t三\t四\t五\t六"

icount = 0      #計數器來判斷是否換行

for i in range(gettotaldays(year,month)%7):

print '\t',                 #輸出空不換行

icount+=1

for i in range(1,getmonthdays(year,month)):

print i,

print '\t',

icount +=1

if icount%7 == 0 :           #計數器取余為0,換行

print ''

本文標題: python實現的簡單萬年曆例子分享

本文位址:

PHP實現簡單萬年曆

header content type text html charset utf 8 例項 萬年曆案例 需求 1 幾年 幾月 幾日 2 週日 週六 3 一號是星期幾 4 這個月有多少天 echo 獲取當前年 year get y get y date y 獲取當前月 month get m get...

C實現萬年曆

要求 輸入年份輸出這一年的日曆 注意 公元1900年一月一日是星期一,這一年是平年 思路 獲取輸入的年份y,首先獲取從公元1900年到 y 1 年 的天數,然後獲得該年份的第一天是星期幾,進行輸出。這次例項,我花費了很長的時間,最後發現錯誤的原因出在在求某一年是閏年還是平年的時候,我沒有田間retu...

PHP實現簡單的萬年曆

修改頁面編碼 header content type text html charset utf 8 如果沒有傳入年份則獲取當前系統年份 year isset get y get y date y 如果沒有傳入月份則獲取當前系統月份 month get m get m date m 獲取當前月有多少...