1 #! /usr/bin/env python
2 #coding=utf-8
3
4 import time
5
6 print time.strftime('%Y-%m-%d %A %X %Z',time.localtime(time.time()))
或者
你也可以用: print list(time.localtime())
结果是: 2011-02-08 Tuesday 16:30:23 Eastern Standard Time
下面是解释:
取得时间相关的信息的话,要用到python time模块,python time模块里面有很多非常好用的功能,你可以去官方
文档了解下,要取的当前时间的话,要取得当前时间的时间戳,时间戳好像是1970年到现在时间相隔的时间。
你可以试下下面的方式来取得当前时间的时间戳:
1 import time
2 print time.time()
输出的结果是:1297201057.8
但是这样是一连串的数字不是我们想要的结果,我们可以利用time模块的格式化时间的方法来处理:
time.localtime(time.time())
用time.localtime()方法,作用是格式化时间戳为本地的时间。
输出的结果是:
time.struct_time(tm_year=2011, tm_mon=2, tm_mday=8, tm_hour=16, tm_min=39, tm_sec=12, tm_wday=1, tm_yday=39, tm_isdst=0)
现在看起来更有希望格式成我们想要的时间了。
time.strftime('%Y-%m-%d',time.localtime(time.time()))
最后用time.strftime()方法,把刚才的一大串信息格式化成我们想要的东西,现在的结果是:
2011-02-08
time.strftime里面有很多参数,可以让你能够更随意的输出自己想要的东西:
下面是time.strftime的参数:
strftime(format[, tuple]) -> string
将指定的struct_time(默认为当前时间),根据指定的格式化字符串输出
python中时间日期格式化符号:
%y 两位数的年份表示(00-99)
%Y 四位数的年份表示(000-9999)
%m 月份(01-12)
%d 月内中的一天(0-31)
%H 24小时制小时数(0-23)
%I 12小时制小时数(01-12)
%M 分钟数(00=59)
%S 秒(00-59)
%a 本地简化星期名称
%A 本地完整星期名称
%b 本地简化的月份名称
%B 本地完整的月份名称
%c 本地相应的日期表示和时间表示
%j 年内的一天(001-366)
%p 本地A.M.或P.M.的等价符
%U 一年中的星期数(00-53)星期天为星期的开始
%w 星期(0-6),星期天为星期的开始
%W 一年中的星期数(00-53)星期一为星期的开始
%x 本地相应的日期表示
%X 本地相应的时间表示
%Z 当前时区的名称
%% %号本身
2. 计算时间差:
1 #! /usr/bin/env python
2 #coding=utf-8
3
4 import time
5 import datetime
6
7 d1 = datetime.datetime(2011, 2, 8)
8 d2 = datetime.datetime(2010, 12, 31)
9
10 print (d1 - d2).days
结果:39
3. 计算运行时间:
1 #! /usr/bin/env python
2 #coding=utf-8
3
4 import time
5 import datetime
6
7 starttime = datetime.datetime.now()
8
9 time.sleep(5)
10
11 endtime = datetime.datetime.now()
12 print (endtime - starttime).seconds
结果:5
4. 计算十天之后的日期时间:
2011-02-18 16:49:28.362000
Fri Feb 18 16:49:28 2011
5. 阳历转阴历:
结果:Sun calendar 2010-9-28 == Lunar calendar (2010, 8, 21)
可以看一下结果是否正确: http://site.baidu.com/list/wannianli.htm
6. Python版的农历日历Calendar
1 #coding=utf-8
2
3 #参见:http://download.csdn.net/source/1178
4
5 #******************************************************************************
6 # 下面为阴历计算所需的数据,为节省存储空间,所以采用下面比较变态的存储方法.
7 #******************************************************************************
8 #数组g_lunar_month_day存入阴历1901年到2050年每年中的月天数信息,
9 #阴历每月只能是29或30天,一年用12(或13)个二进制位表示,对应位为1表30天,否则为29天
10 g_lunar_month_day = [
11 0x4ae0, 0xa570, 0x5268, 0xd260, 0xd950, 0x6aa8, 0x56a0, 0x9ad0, 0x4ae8, 0x4ae0, #1910
12 0xa4d8, 0xa4d0, 0xd250, 0xd548, 0xb550, 0x56a0, 0x96d0, 0x95b0, 0x49b8, 0x49b0, #1920
13 0xa4b0, 0xb258, 0x6a50, 0x6d40, 0xada8, 0x2b60, 0x9570, 0x4978, 0x4970, 0x64b0, #1930
14 0xd4a0, 0xea50, 0x6d48, 0x5ad0, 0x2b60, 0x9370, 0x92e0, 0xc968, 0xc950, 0xd4a0, #1940
15 0xda50, 0xb550, 0x56a0, 0xaad8, 0x25d0, 0x92d0, 0xc958, 0xa950, 0xb4a8, 0x6ca0, #1950
16 0xb550, 0x55a8, 0x4da0, 0xa5b0, 0x52b8, 0x52b0, 0xa950, 0xe950, 0x6aa0, 0xad50, #1960
17 0xab50, 0x4b60, 0xa570, 0xa570, 0x5260, 0xe930, 0xd950, 0x5aa8, 0x56a0, 0x96d0, #1970
18 0x4ae8, 0x4ad0, 0xa4d0, 0xd268, 0xd250, 0xd528, 0xb540, 0xb6a0, 0x96d0, 0x95b0, #1980
19 0x49b0, 0xa4b8, 0xa4b0, 0xb258, 0x6a50, 0x6d40, 0xada0, 0xab60, 0x9370, 0x4978, #1990
20 0x4970, 0x64b0, 0x6a50, 0xea50, 0x6b28, 0x5ac0, 0xab60, 0x9368, 0x92e0, 0xc960, #2000
21 0xd4a8, 0xd4a0, 0xda50, 0x5aa8, 0x56a0, 0xaad8, 0x25d0, 0x92d0, 0xc958, 0xa950, #2010
22 0xb4a0, 0xb550, 0xb550, 0x55a8, 0x4ba0, 0xa5b0, 0x52b8, 0x52b0, 0xa930, 0x74a8, #2020
23 0x6aa0, 0xad50, 0x4da8, 0x4b60, 0x9570, 0xa4e0, 0xd260, 0xe930, 0xd530, 0x5aa0, #2030
24 0x6b50, 0x96d0, 0x4ae8, 0x4ad0, 0xa4d0, 0xd258, 0xd250, 0xd520, 0xdaa0, 0xb5a0, #2040
25 0x56d0, 0x4ad8, 0x49b0, 0xa4b8, 0xa4b0, 0xaa50, 0xb528, 0x6d20, 0xada0, 0x55b0, #2050
26 ]
27
28 #数组gLanarMonth存放阴历1901年到2050年闰月的月份,如没有则为0,每字节存两年
29 g_lunar_month = [
30 0x00, 0x50, 0x04, 0x00, 0x20, #1910
31 0x60, 0x05, 0x00, 0x20, 0x70, #1920
32 0x05, 0x00, 0x40, 0x02, 0x06, #1930
33 0x00, 0x50, 0x03, 0x07, 0x00, #1940
34 0x60, 0x04, 0x00, 0x20, 0x70, #1950
35 0x05, 0x00, 0x30, 0x80, 0x06, #1960
36 0x00, 0x40, 0x03, 0x07, 0x00, #1970
37 0x50, 0x04, 0x08, 0x00, 0x60, #1980
38 0x04, 0x0a, 0x00, 0x60, 0x05, #1990
39 0x00, 0x30, 0x80, 0x05, 0x00, #2000
40 0x40, 0x02, 0x07, 0x00, 0x50, #2010
41 0x04, 0x09, 0x00, 0x60, 0x04, #2020
42 0x00, 0x20, 0x60, 0x05, 0x00, #2030
43 0x30, 0xb0, 0x06, 0x00, 0x50, #2040
44 0x02, 0x07, 0x00, 0x50, 0x03 #2050
45 ]
46
47 #==================================================================================
48
49 from datetime import date, datetime
50 from calendar import Calendar as Cal
51
52 START_YEAR = 1901
53
54 def is_leap_year(tm):
55 y = tm.year
56 return (not (y % 4)) and (y % 100) or (not (y % 400))
57
58 def show_month(tm):
59 (ly, lm, ld) = get_ludar_date(tm)
60 print
61 print u"%d年%d月%d日" % (tm.year, tm.month, tm.day), week_str(tm),
62 print u"\t农历:", y_lunar(ly), m_lunar(lm), d_lunar(ld)
63 print
64 print u"日\t一\t二\t三\t四\t五\t六"
65
66 c = Cal()
67 ds = [d for d in c.itermonthdays(tm.year, tm.month)]
68 count = 0
69 for d in ds:
70 count += 1
71 if d == 0:
72 print "\t",
73 continue
74
75 (ly, lm, ld) = get_ludar_date(datetime(tm.year, tm.month, d))
76 if count % 7 == 0:
77 print
78
79 d_str = str(d)
80 if d == tm.day:
81 d_str = u"*" + d_str
82 print d_str + d_lunar(ld) + u"\t",
83 print
84
85 def this_month():
86 show_month(datetime.now())
87
88 def week_str(tm):
89 a = u'星期一 星期二 星期三 星期四 星期五 星期六 星期日'.split()
90 return a[tm.weekday()]
91
92 def d_lunar(ld):
93 a = u'初一 初二 初三 初四 初五 初六 初七 初八 初九 初十\
94 十一 十二 十三 十四 十五 十六 十七 十八 十九 廿十\
95 廿一 廿二 廿三 廿四 廿五 廿六 廿七 廿八 廿九 三十'.split()
96 return a[ld - 1]
97
98 def m_lunar(lm):
99 a = u'正月 二月 三月 四月 五月 六月 七月 八月 九月 十月 十一月 十二月'.split()
100 return a[lm - 1]
101
102 def y_lunar(ly):
103 y = ly
104 tg = u'甲 乙 丙 丁 戊 己 庚 辛 壬 癸'.split()
105 dz = u'子 丑 寅 卯 辰 巳 午 未 申 酉 戌 亥'.split()
106 sx = u'鼠 牛 虎 免 龙 蛇 马 羊 猴 鸡 狗 猪'.split()
107 return tg[(y - 4) % 10] + dz[(y - 4) % 12] + u' ' + sx[(y - 4) % 12] + u'年'
108
109 def date_diff(tm):
110 return (tm - datetime(1901, 1, 1)).days
111
112 def get_leap_month(lunar_year):
113 flag = g_lunar_month[(lunar_year - START_YEAR) / 2]
114 if (lunar_year - START_YEAR) % 2:
115 return flag & 0x0f
116 else:
117 return flag >> 4
118
119 def lunar_month_days(lunar_year, lunar_month):
120 if (lunar_year < START_YEAR):
121 return 30
122
123 high, low = 0, 29
124 iBit = 16 - lunar_month;
125
126 if (lunar_month > get_leap_month(lunar_year) and get_leap_month(lunar_year)):
127 iBit -= 1
128
129 if (g_lunar_month_day[lunar_year - START_YEAR] & (1 << iBit)):
130 low += 1
131
132 if (lunar_month == get_leap_month(lunar_year)):
133 if (g_lunar_month_day[lunar_year - START_YEAR] & (1 << (iBit -1))):
134 high = 30
135 else:
136 high = 29
137
138 return (high, low)
139
140 def lunar_year_days(year):
141 days = 0
142 for i in range(1, 13):
143 (high, low) = lunar_month_days(year, i)
144 days += high
145 days += low
146 return days
147
148 def get_ludar_date(tm):
149 span_days = date_diff(tm)
150
151 #阳历1901年2月19日为阴历1901年正月初一
152 #阳历1901年1月1日到2月19日共有49天
153 if (span_days <49):
154 year = START_YEAR - 1
155 if (span_days <19):
156 month = 11;
157 day = 11 + span_days
158 else:
159 month = 12;
160 day = span_days - 18
161 return (year, month, day)
162
163 #下面从阴历1901年正月初一算起
164 span_days -= 49
165 year, month, day = START_YEAR, 1, 1
166 #计算年
167 tmp = lunar_year_days(year)
168 while span_days >= tmp:
169 span_days -= tmp
170 year += 1
171 tmp = lunar_year_days(year)
172
173 #计算月
174 (foo, tmp) = lunar_month_days(year, month)
175 while span_days >= tmp:
176 span_days -= tmp
177 if (month == get_leap_month(year)):
178 (tmp, foo) = lunar_month_days(year, month)
179 if (span_days < tmp):
180 return (0, 0, 0)
181 span_days -= tmp
182 month += 1
183 (foo, tmp) = lunar_month_days(year, month)
184
185 #计算日
186 day += span_days
187 return (year, month, day)
188
189 #功能简单,只打印当月的
190 this_month()
7.计算年龄
1 from time import *
2 #a function to find your age
3 def age():
4 print "Enter Your Date of Birth"
5 d=input("Day:")
6 m=input("Month:")
7 y=input("Year:")
8 #get the current time in tuple format
9 a=gmtime()
10 #difference in day
11 dd=a[2]-d
12 #difference in month
13 dm=a[1]-m
14 #difference in year
15 dy=a[0]-y
16 #checks if difference in day is negative
17 if dd<0:
18 dd=dd+30
19 dm=dm-1
20 #checks if difference in month is negative when difference in day is also negative
21 if dm<0:
22 dm=dm+12
23 dy=dy-1
24 #checks if difference in month is negative when difference in day is positive
25 if dm<0:
26 dm=dm+12
27 dy=dy-1
28 print "Your current age is %s Years %s Months & %s Days"%(dy,dm,dd)
29
30 age()
31