博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 日期与时间
阅读量:6715 次
发布时间:2019-06-25

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

Python 3.6.4

import time, calendar, datetime print("距离1970年的秒数为:", time.time())print("本地时间为:", time.localtime())print("格式化:", time.asctime(time.localtime(time.time())))print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())) # 输出 # 距离1970年的秒数为: 1518107142.14775

 # 本地时间为: time.struct_time(tm_year=2018, tm_mon=2, tm_mday=9, tm_hour=0, tm_min=25, tm_sec=42, tm_wday=4, tm_yday=40, tm_isdst=0)

  #格式化: Fri Feb 9 00:25:42 2018
  # 2018-02-09 00:25:42

# 打印日历print(calendar.month(2018, 3)) # 下面是利用datetime输出时间,个人觉得比上面那种方法简单好用i = datetime.datetime.now();print(i)print("格式化(年/月/日 时:分:秒):%s/%s/%s %s:%s:%s"     % (i.year, i.month, i.day, i.hour, i.minute, i.second)    ) # 以下为输出结果

March 2018

Mo Tu We Th Fr Sa Su
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

 

2018-02-09 00:25:42.179003

格式化(年/月/日 时:分:秒):2018/2/9 0:25:42

 

参考:

转载于:https://www.cnblogs.com/ryanzheng/p/8433971.html

你可能感兴趣的文章
3、异步编程-JS种事件队列的优先级
查看>>
关于C语言判断文件尾问题的探讨
查看>>
poj1243(经典dp)
查看>>
svn仓库转为git仓库
查看>>
跳转到指定的控制器
查看>>
cocoapod升级版本
查看>>
在正式800修改代码
查看>>
AngularJs的UI组件ui-Bootstrap分享(十三)——Progressbar
查看>>
用前序遍历递归构造二叉树
查看>>
JavaScript jQuery bootstrap css ajax
查看>>
组合选择器
查看>>
Understanding Angular’s $apply() and $digest()
查看>>
HTML之列表
查看>>
Global.asax文件说明
查看>>
(十六)SpringBoot之使用 Caching- - EhCache
查看>>
ubuntu制作apt源
查看>>
理解Java常量池
查看>>
JVM调优总结-调优方法
查看>>
微信小程序 watch监听数据变化 类似vue中的watch
查看>>
u检验、t检验、F检验、X2检验 (转)
查看>>