Python:日期和时间类型学习

背景

在非开发环境经常需要做一下日期计算,就准备使用Python,顺便记下来学习的痕迹。

代码

复制代码
 1  1 # coding = utf-8
 2  2 
 3  3 from datetime import *
 4  4 
 5  5 ########################## 日期 ##########################
 6  6 date_now = date.today()
 7  7 print('now:', date_now)
 8  8 print('year:', date_now.year)
 9  9 print('month:', date_now.month)
10 10 print('day:', date_now.day)
11 11 
12 12 date_tomorrow = date_now.replace(day = date_now.day + 1)
13 13 print('tomorrow:', date_tomorrow)
14 14 
15 15 delta = date_tomorrow - date_now
16 16 print('tomorrow - now:', delta)
17 17 
18 18 ########################## 时间 ##########################
19 19 time_now = time(13, 59, 59)
20 20 print('now time:', time_now)
21 21 print('hour:', time_now.hour)
22 22 print('minute:', time_now.minute)
23 23 print('second:', time_now.second)
24 24 print('next hour time:', time_now.replace(hour = time_now.hour + 1))
25 25 
26 26 ########################## 日期时间 ##########################
27 27 now = datetime.today()
28 28 print('date:', now.date())
29 29 print('time:', now.time())
30 30 
31 31 ########################## 格式化 ##########################
32 32 print(datetime.today().strftime( '%Y-%m-%d %H:%M:%S %f' ) )
相关推荐
hu_nil10 分钟前
LLMOps-第十三周
python·vllm
空影星16 分钟前
轻量日记神器RedNotebook,高效记录每一天
python·数据挖掘·数据分析·音视频
鸭子程序员16 分钟前
c++ 算法
开发语言·c++·算法
YJlio20 分钟前
ShareEnum 学习笔记(9.5):内网共享体检——开放共享、匿名访问与权限风险
大数据·笔记·学习
搬砖ing换来金砖33 分钟前
Python入门-Task02
开发语言·python
雨中散步撒哈拉42 分钟前
17、做中学 | 初三下期 Golang文件操作
开发语言·后端·golang
databook1 小时前
告别盲人摸象,数据分析的抽样方法总结
后端·python·数据分析
CoderYanger1 小时前
C.滑动窗口——1423. 可获得的最大点数
java·开发语言·算法·leetcode·1024程序员节
全栈陈序员1 小时前
【Python】基础语法入门(九)—— 代码规范、调试技巧与性能初探
开发语言·python·代码规范
合作小小程序员小小店1 小时前
图书管理系统,基于winform+sql sever,开发语言c#,数据库mysql
开发语言·数据库·sql·microsoft·c#