1. 显示当前日期:
 #! /usr/bin/env python
#coding=utf-8 import time 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年到现在时间相隔的时间。

你可以试下下面的方式来取得当前时间的时间戳:

 import time
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. 计算时间差:

 #! /usr/bin/env python
#coding=utf-8 import time
import datetime d1 = datetime.datetime(2011, 2, 8)
d2 = datetime.datetime(2010, 12, 31) print (d1 - d2).days

结果:39

3. 计算运行时间:

 #! /usr/bin/env python   
#coding=utf-8 import time
import datetime starttime = datetime.datetime.now() time.sleep(5) endtime = datetime.datetime.now()
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

 #coding=utf-8

 #参见:http://download.csdn.net/source/1178

 #******************************************************************************
# 下面为阴历计算所需的数据,为节省存储空间,所以采用下面比较变态的存储方法.
#******************************************************************************
#数组g_lunar_month_day存入阴历1901年到2050年每年中的月天数信息,
#阴历每月只能是29或30天,一年用12(或13)个二进制位表示,对应位为1表30天,否则为29天
g_lunar_month_day = [
0x4ae0, 0xa570, 0x5268, 0xd260, 0xd950, 0x6aa8, 0x56a0, 0x9ad0, 0x4ae8, 0x4ae0, #
0xa4d8, 0xa4d0, 0xd250, 0xd548, 0xb550, 0x56a0, 0x96d0, 0x95b0, 0x49b8, 0x49b0, #
0xa4b0, 0xb258, 0x6a50, 0x6d40, 0xada8, 0x2b60, 0x9570, 0x4978, 0x4970, 0x64b0, #
0xd4a0, 0xea50, 0x6d48, 0x5ad0, 0x2b60, 0x9370, 0x92e0, 0xc968, 0xc950, 0xd4a0, #
0xda50, 0xb550, 0x56a0, 0xaad8, 0x25d0, 0x92d0, 0xc958, 0xa950, 0xb4a8, 0x6ca0, #
0xb550, 0x55a8, 0x4da0, 0xa5b0, 0x52b8, 0x52b0, 0xa950, 0xe950, 0x6aa0, 0xad50, #
0xab50, 0x4b60, 0xa570, 0xa570, 0x5260, 0xe930, 0xd950, 0x5aa8, 0x56a0, 0x96d0, #
0x4ae8, 0x4ad0, 0xa4d0, 0xd268, 0xd250, 0xd528, 0xb540, 0xb6a0, 0x96d0, 0x95b0, #
0x49b0, 0xa4b8, 0xa4b0, 0xb258, 0x6a50, 0x6d40, 0xada0, 0xab60, 0x9370, 0x4978, #
0x4970, 0x64b0, 0x6a50, 0xea50, 0x6b28, 0x5ac0, 0xab60, 0x9368, 0x92e0, 0xc960, #
0xd4a8, 0xd4a0, 0xda50, 0x5aa8, 0x56a0, 0xaad8, 0x25d0, 0x92d0, 0xc958, 0xa950, #
0xb4a0, 0xb550, 0xb550, 0x55a8, 0x4ba0, 0xa5b0, 0x52b8, 0x52b0, 0xa930, 0x74a8, #
0x6aa0, 0xad50, 0x4da8, 0x4b60, 0x9570, 0xa4e0, 0xd260, 0xe930, 0xd530, 0x5aa0, #
0x6b50, 0x96d0, 0x4ae8, 0x4ad0, 0xa4d0, 0xd258, 0xd250, 0xd520, 0xdaa0, 0xb5a0, #
0x56d0, 0x4ad8, 0x49b0, 0xa4b8, 0xa4b0, 0xaa50, 0xb528, 0x6d20, 0xada0, 0x55b0, #
] #数组gLanarMonth存放阴历1901年到2050年闰月的月份,如没有则为0,每字节存两年
g_lunar_month = [
0x00, 0x50, 0x04, 0x00, 0x20, #
0x60, 0x05, 0x00, 0x20, 0x70, #
0x05, 0x00, 0x40, 0x02, 0x06, #
0x00, 0x50, 0x03, 0x07, 0x00, #
0x60, 0x04, 0x00, 0x20, 0x70, #
0x05, 0x00, 0x30, 0x80, 0x06, #
0x00, 0x40, 0x03, 0x07, 0x00, #
0x50, 0x04, 0x08, 0x00, 0x60, #
0x04, 0x0a, 0x00, 0x60, 0x05, #
0x00, 0x30, 0x80, 0x05, 0x00, #
0x40, 0x02, 0x07, 0x00, 0x50, #
0x04, 0x09, 0x00, 0x60, 0x04, #
0x00, 0x20, 0x60, 0x05, 0x00, #
0x30, 0xb0, 0x06, 0x00, 0x50, #
0x02, 0x07, 0x00, 0x50, 0x03 #
] #================================================================================== from datetime import date, datetime
from calendar import Calendar as Cal START_YEAR = 1901 def is_leap_year(tm):
y = tm.year
return (not (y % 4)) and (y % 100) or (not (y % 400)) def show_month(tm):
(ly, lm, ld) = get_ludar_date(tm)
print
print u"%d年%d月%d日" % (tm.year, tm.month, tm.day), week_str(tm),
print u"\t农历:", y_lunar(ly), m_lunar(lm), d_lunar(ld)
print
print u"日\t一\t二\t三\t四\t五\t六" c = Cal()
ds = [d for d in c.itermonthdays(tm.year, tm.month)]
count = 0
for d in ds:
count += 1
if d == 0:
print "\t",
continue (ly, lm, ld) = get_ludar_date(datetime(tm.year, tm.month, d))
if count % 7 == 0:
print d_str = str(d)
if d == tm.day:
d_str = u"*" + d_str
print d_str + d_lunar(ld) + u"\t",
print def this_month():
show_month(datetime.now()) def week_str(tm):
a = u'星期一 星期二 星期三 星期四 星期五 星期六 星期日'.split()
return a[tm.weekday()] def d_lunar(ld):
a = u'初一 初二 初三 初四 初五 初六 初七 初八 初九 初十\
十一 十二 十三 十四 十五 十六 十七 十八 十九 廿十\
廿一 廿二 廿三 廿四 廿五 廿六 廿七 廿八 廿九 三十'.split()
return a[ld - 1] def m_lunar(lm):
a = u'正月 二月 三月 四月 五月 六月 七月 八月 九月 十月 十一月 十二月'.split()
return a[lm - 1] def y_lunar(ly):
y = ly
tg = u'甲 乙 丙 丁 戊 己 庚 辛 壬 癸'.split()
dz = u'子 丑 寅 卯 辰 巳 午 未 申 酉 戌 亥'.split()
sx = u'鼠 牛 虎 免 龙 蛇 马 羊 猴 鸡 狗 猪'.split()
return tg[(y - 4) % 10] + dz[(y - 4) % 12] + u' ' + sx[(y - 4) % 12] + u'年' def date_diff(tm):
return (tm - datetime(1901, 1, 1)).days def get_leap_month(lunar_year):
flag = g_lunar_month[(lunar_year - START_YEAR) / 2]
if (lunar_year - START_YEAR) % 2:
return flag & 0x0f
else:
return flag >> 4 def lunar_month_days(lunar_year, lunar_month):
if (lunar_year < START_YEAR):
return 30 high, low = 0, 29
iBit = 16 - lunar_month; if (lunar_month > get_leap_month(lunar_year) and get_leap_month(lunar_year)):
iBit -= 1 if (g_lunar_month_day[lunar_year - START_YEAR] & (1 << iBit)):
low += 1 if (lunar_month == get_leap_month(lunar_year)):
if (g_lunar_month_day[lunar_year - START_YEAR] & (1 << (iBit -1))):
high = 30
else:
high = 29 return (high, low) def lunar_year_days(year):
days = 0
for i in range(1, 13):
(high, low) = lunar_month_days(year, i)
days += high
days += low
return days def get_ludar_date(tm):
span_days = date_diff(tm) #阳历1901年2月19日为阴历1901年正月初一
#阳历1901年1月1日到2月19日共有49天
if (span_days <49):
year = START_YEAR - 1
if (span_days <19):
month = 11;
day = 11 + span_days
else:
month = 12;
day = span_days - 18
return (year, month, day) #下面从阴历1901年正月初一算起
span_days -= 49
year, month, day = START_YEAR, 1, 1
#计算年
tmp = lunar_year_days(year)
while span_days >= tmp:
span_days -= tmp
year += 1
tmp = lunar_year_days(year) #计算月
(foo, tmp) = lunar_month_days(year, month)
while span_days >= tmp:
span_days -= tmp
if (month == get_leap_month(year)):
(tmp, foo) = lunar_month_days(year, month)
if (span_days < tmp):
return (0, 0, 0)
span_days -= tmp
month += 1
(foo, tmp) = lunar_month_days(year, month) #计算日
day += span_days
return (year, month, day) #功能简单,只打印当月的
this_month()


7.计算年龄

 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()

Python实例讲解 -- 获取本地时间日期(日期计算)的更多相关文章

  1. PHP date 格式化一个本地时间/日期

    PHP date 格式化一个本地时间/日期 date (PHP 4, PHP 5) date — 格式化一个本地时间/日期 说明 string date ( string $format [, int ...

  2. 获取当前时间(日期格式) && 获取当前加一年的时间(日期格式)

    获取当前时间,日期格式function currentDate() { var date = new Date(); var y = date.getFullYear(); var m = date. ...

  3. iOS获取本地时间

    NSDate *currentDate = [NSDate date];//获取当前时间,日期 NSDateFormatter *dateFormatter = [[NSDateFormatter a ...

  4. python获取本地时间,时间戳与日期格式相互转换

    附上代码与运行结果截图: import time # 获取当前时间 now = time.localtime() # 格式化日期 now_ = time.strftime('%Y-%m-%d %H:% ...

  5. Python标准库:datetime 时间和日期模块 —— 时间的获取和操作详解

    datetime 时间和日期模块 datetime 模块提供了以简单和复杂的方式操作日期和时间的类.虽然支持日期和时间算法,但实现的重点是有效的成员提取以进行输出格式化和操作.该模块还支持可感知时区的 ...

  6. JS获取当前时间和日期

    当前时间和日期 var myDate = new Date(); myDate.getYear(); //获取当前年份(2位) myDate.getFullYear(); //获取完整的年份(4位,1 ...

  7. Js获取当前时间、日期

    var myDate = new Date();myDate.getYear();        //获取当前年份(2位)myDate.getFullYear();    //获取完整的年份(4位,1 ...

  8. 一QT获取当前时间和日期

    获取日期和时间使用QDateTime类,该类中有一个静态成员函数可以返回当前的时间信息 我们可以直接调用这个静态函数获取当前时间 QDateTime time = QDateTime::current ...

  9. python获取本地时间

    python本地时间 import time # 格式化成2016-03-20 11:45:39形式 now = time.strftime("%Y-%m-%d %H:%M:%S" ...

随机推荐

  1. LDR: LdrpWalkImportDescriptor() failed to probe C:\WINDOWS\system32\opencv_core243d.dll for its manifest, ntstatus 0xc0150002

    LDR: LdrpWalkImportDescriptor() failed to probe C:\WINDOWS\system32\opencv_core243d.dll for its mani ...

  2. 在vue中使用font-awesome

    1.安装 cnpm i font-awesome -S 2.在main.js中引入 import 'font-awesome/css/font-awesome.min.css'

  3. 关于JavaScript概念的总结

    原文 https://www.jianshu.com/p/1e8d8a691aa8 大纲 1.JavaScript的概念 2.JavaScript 特点 3.JavaScript是弱类型语言 4.Ja ...

  4. 常用有效检测数据库运行状态SQL脚本

    1.查看数据库中不为 InnoDB 引擎的表   SELECT TABLE_SCHEMA, TABLE_NAME, ENGINE   FROM information_schema.TABLES  W ...

  5. 【a702】贷款利率

    Time Limit: 10 second Memory Limit: 2 MB 问题描述 当一个人从银行贷款后,在一段时间内他将不得不每月尝还固定的分期付款.这个问题要求计算机出贷款者向银行支付的利 ...

  6. Swift开发教程--关于Existing instance variable &#39;_delegate&#39;...的解决的方法

    xcode编译提示问题:Existing instance variable '_delegate' for property 'delegate' with  assign attribute mu ...

  7. PatentTips - Fast awake from low power mode

    BACKGROUND Electronic devices, such as electronic book readers ("eBook reader devices"), c ...

  8. Ntp配置文件详解

    1. http://www.ine.com/resources/ntp-authentication.htm 2. http://blog.chinaunix.net/uid-773723-id-16 ...

  9. arcengine 开发经典帖 【强烈推荐仔细研读】

    转自原文 arcengine 开发经典帖 使用ArcGIS Engine 开发自定义GIS应用: 第一部分:使用ArcGIS Engine 发布自定义GIS应用软件-全面了解ArcGIS Engine ...

  10. [CSS] Nest a grid within a grid

    A grid item can also be a grid container! Let’s see how to specify a grid within a grid.