python根据出生日期计算年龄的代码

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

python根据出生日期计算年龄的代码,运行后会提醒用户输出出生的年月日,然后输出年龄,可以改写为一个通用函数

from time import *
#a function to find your age
def age():
    print "Enter Your Date of Birth"
    d=input("Day:")
    m=input("Month:")
    y=input("Year:")
    #get the current time in tuple format
    a=gmtime()
    #difference in day
    dd=a[2]-d
    #difference in month
    dm=a[1]-m
    #difference in year
    dy=a[0]-y
    #checks if difference in day is negative
    if dd<0:
        dd=dd+30
        dm=dm-1
        #checks if difference in month is negative when difference in day is also negative
        if dm<0:
            dm=dm+12
            dy=dy-1
    #checks if difference in month is negative when difference in day is positive
    if dm<0:
        dm=dm+12
        dy=dy-1
    print "Your current age is %s Years %s Months & %s Days"%(dy,dm,dd)
     
age()

标签: 代码

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:jquery 全反选实现插件

下一篇:iOS图片处理,截图,缩放,存储