python练习实例---求天数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python练习实例---求天数相关的知识,希望对你有一定的参考价值。

输入某年某月某日,判断这一天是这一年的第几天?

#!/usr/bin/env python
# -*- coding:utf -8

year = int(raw_input("输入年份: "))
month = int(raw_input("输入月份: "))
day = int(raw_input("输入日子: "))

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
[[email protected] lianxi]# python e1.py 
输入年份: 2015
输入月份: 6
输入日子: 7
it is the 158th day.


本文出自 “自定义” 博客,谢绝转载!

以上是关于python练习实例---求天数的主要内容,如果未能解决你的问题,请参考以下文章

Python练习实例026

python3练习:针对某一日期增加或减少时间天数

Pythondemo实验21练习实例求球反弹高度

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

Pythondemo实验19练习实例不同位数相同阿拉伯数字组成的数之和

Python练习题 028:求3*3矩阵对角线数字之和