python - 打印万年历

# 打印万年历的条件:
# 1)闰年条件:能被4整除且不能被100整除,或者能被400整除
# 2)1900年1月1日 是周一
# 注意:这个题不要调用系统函数或库。
# 代码注意封装,一个函数实现一个功能。注意分析实现打印万年历的功能步骤:
# 判断闰年;
# 判断当月有多少天;
# 这个月的1号是从周几开始的;
# 格式化打印日历。

#从键盘输入年份 月份
def inputYearAndMonts():
    year = input("输入年份")
    month = input("输入月份")
    year = int(year)
    month = int(month)
    orignalDay(year,moths=month)
#输入年份 月份 、得到这个月第一天是星期几
def orignalDay(years:int,moths:int):
    temp = abs(years - 1990)
    erpetualNumber = 0
    beginYear = 0
    endYear = 0
    if years-1990<0:
        beginYear = years
        endYear = 1990
    else:
        beginYear = 1990
        endYear = years
    for i in range(beginYear,endYear):
        if (i%100 != 0) and (i%4 == 0):
            erpetualNumber = erpetualNumber+1
        if (i%100 == 0) and (i%400 == 0):
            erpetualNumber = erpetualNumber+1
    totalDays = (temp - erpetualNumber)*365 + erpetualNumber*366
    isLeapYear = False
    leapYearMonths = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
    nomalYearMoths = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
    if years % 4 == 0 and years % 100 != 0:
        isLeapYear = True
    for i in range(0,(moths-1)):#注意这里是0不是1
        if isLeapYear==True:
            totalDays = totalDays+leapYearMonths[i]
        else:
            totalDays = totalDays + nomalYearMoths[i]
    #上面得到的是 上个月的最后一天。 是第多少天
    #则这个月的第一天 在上面的基础上加一
    totalDays = totalDays+1
    print("天数:%d"%totalDays)
    beginWeek = 0
    if years>=1990:
        beginWeek = totalDays%7#月初第一天是星期几
        #print("这个月的第一天是:星期%d"%(totalDays%7))
    else:
        beginWeek = 7-totalDays%7#月初第一天是星期几
        #print("这个月的第一天是:星期%d" % (7 -totalDays % 7))
    currentMoths = 0
    if isLeapYear:
        currentMoths = leapYearMonths[moths]
    else:
        currentMoths = nomalYearMoths[moths]
    #打印万年历
    print("下面是%d年%d月" %(years,moths))
    printPerpetualCalendar(currentMoths,beginWeek)


#打印万年历
#传入 当月月份 和 第一天星期几
def printPerpetualCalendar(months:int, begin:int):
    #先输出万年历的 头部
    week = ["日","一","二","三","四","五","六"]
    print("日\t一\t二\t三\t四\t五\t六")
    #循环输出每一月的具体日期
    for i in range(1,months+begin+1):
        if i<=begin:#当这个月第一天不是星期一时,输出占位符
            print(" \t",end="")
            continue
        print(i-begin,end="")#end=""可以不输出换行。
        print("\t", end="")
        if i%7==0:#七天一换行
            print()#只是为了换行



#printPerpetualCalendar()
#开始运行
inputYearAndMonts()

最后的结果图:

python - 打印万年历_第1张图片
捕获.PNG

你可能感兴趣的:(python - 打印万年历)