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

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

1、打印月历

>>> import calendar

>>> cal = calendar.month(2018,1)
>>> print(cal)
January 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

 

2、

import time;  # 引入time模块ticks = time.time()print ("当前时间戳为:", ticks)

输出结果:

当前时间戳为: 1459996086.7115328 3、 import time localtime = time.localtime(time.time()) print ("本地时间为 :", localtime) 输出结果: 本地时间为 : time.struct_time(tm_year=2016, tm_mon=4, tm_mday=7, tm_hour=10, tm_min=28, tm_sec=49, tm_wday=3, tm_yday=98, tm_isdst=0) 4、 import time # 格式化成2016-03-20 11:45:39形式 print (time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())) 参考: https://blog.csdn.net/qq_17119267/article/details/79410992

转载于:https://www.cnblogs.com/leochan007/p/9680223.html

你可能感兴趣的文章
MySQL 跳过同步错误方法
查看>>
MySQL 清理slowlog方法
查看>>
HOG特征-理解篇
查看>>
HTTP深入浅出 http请求
查看>>
为YUM设置代理的方法
查看>>
Java 编程的动态性 第1 部分: 类和类装入--转载
查看>>
再谈ABC
查看>>
【转】持久化消息队列之MEMCACHEQ
查看>>
java-Mail
查看>>
Dom4j学习笔记
查看>>
C语言 HTTP上传文件-利用libcurl库上传文件
查看>>
[MEAN Stack] First API -- 7. Using Route Files to Structure Server Side API
查看>>
Hibernate 的HQL语句,初级
查看>>
调试逆向分为动态分析技术和静态分析技术(转)
查看>>
Android webview使用详解
查看>>
业务对象和BAPI
查看>>
程序源系统与当前系统不一致:Carry out repairs in non-original systems only if urgent
查看>>
微软职位内部推荐-Senior Software Engineer
查看>>
程序中的魔鬼数字
查看>>
SVN高速新手教程
查看>>