博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python_41datetime模块
阅读量:5033 次
发布时间:2019-06-12

本文共 1369 字,大约阅读时间需要 4 分钟。

import time

import datetime

print (time.clock()) 返回处理器时间

print (time.time()) 返回当前系统时间戳

print (time.ctime()) 输出带有星期 日历  时间的当前系统时间

print (time.ctime(time.time()-86400))将时间戳转换为字符串

print (time.gmtime(time.time()-86400))将时间戳转换成struct_time 格式

print (time.localtime(time.time()-86400))将时间戳转换为struct_time格式   但返回的是本地时间

print (time.mktime(time.localtime()))与time.localtime()功能相反,将struct_time格式转换成时间戳格式  

print (time.strftime("%Y-%m-%d %H:%M:%S",time.gmtime()))将struct_time格式转换成指定的字符串格式

print (time.strptime("2016-01-02","%Y-%m-%d" )) 将字符串转换为struct_time格式  前后字符串定位要匹配

print (datetime.date.today()) 打印当前时间  输出格式   ‘’2018-03-27‘’

print (datetime.date.fromtimestamp(time.time()-86400)) 转换时间戳为日期格式

current_time=datetime.datatime.now()

print (current_time) 输出 2018-03-27 10:34:

print (current_time.timetuple()) 输出转换为 固定结构格式的 时间表示

print (current_time.replace())  什么也不替换   2018-03-27 10:50:19.562209

print (current_time.replace(2014,09,12))     替换对应的字符   2014-09-12 10:49:30.198209

str_to_date=datetime.datetime.strptime('21/11/06 16:30',"%d%m%y  %H:%M") 将字符串转换成日期格式

new_date=datetime.datetime.now()+datetime.timedelta(days=10)  比现在增加10天

new_date=datetime.datetime.now()-datetime.timedelta(days=10)  比现在减10天

new_date=datetime.datetime.now()+datetime.timedelta(hours=10)  比现在增加10小时

new_date=datetime.datetime.now()+datetime.timedelta(seconds=10)  比现在增加10秒

 

转载于:https://www.cnblogs.com/beyondtring/p/8655998.html

你可能感兴趣的文章
记五一清北(济南)
查看>>
Centos非管理员安装Python和pip
查看>>
切片器化繁为简,盘它 !
查看>>
Hdu 1181 变形课
查看>>
关于Unity中的3D拾取
查看>>
Link Maker 为 Apple Music、iTunes Store、App Store、iBooks Store 以及 Mac App Store 创建链接。...
查看>>
图的广度优先遍历补分
查看>>
String Boot-thymeleaf使用(四)
查看>>
吴裕雄 数据挖掘与分析案例实战(13)——GBDT模型的应用
查看>>
loj10159. 「一本通 5.2 练习 2」旅游规划
查看>>
SpringBoot(八) Caching
查看>>
[TYVJ1930]编年史
查看>>
【BZOJ 2916】 2916: [Poi1997]Monochromatic Triangles (容斥)
查看>>
js、ajax乱码
查看>>
【转载】回首大学四年,一个电工对大学课程的见解
查看>>
MySQL监控和预警
查看>>
根据CPU核心数确定线程池并发线程数
查看>>
解决方法:CentOS7用yum安装软件显示错误:cannot find a valid baseurl for repo: base/7/x86_64...
查看>>
hive安装<1>
查看>>
jsp另外五大内置对象之-out获取缓冲区大小
查看>>