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