导语:
本文主要介绍了关于python 如何获取当前时间的相关知识,包括python获取当前日期时间,以及python如何获取当前时间加两小时这些编程知识,希望对大家有参考作用。
python 如何获取当前系统的时间
1、导入包
import datetime
python学习网,大量的免费
,欢迎在线学习!
2、获取当前的时间
curr_time = datetime.datetime.now() # 2019-07-06 14:55:56.873893 <class 'datetime.datetime'>
curr_time.year # 2019 <class 'int'>
curr_time.month # 7 <class 'int'>
curr_time.day # 6 <class 'int'>
curr_time.hour # 14 <class 'int'>
curr_time.minute # 55 <class 'int'>
curr_time.second # 56 <class 'int'>
curr_time.date() # 2019-07-06 <class 'datetime.date'>
3、格式化
通过datetime.datetime.now(),我们获取到的时间格式为:2019-07-06 14:55:56.873893,类型:<class 'datetime.datetime'>
我们可以使用 strftime() 来转换成我们想要的格式。处理后的返回值为2019-07-06、07/06等目标形式,类型为str
time_str = curr_time.strftime("%Y-%m-%d") # 2019-07-06
time_str = curr_time.strftime("%m/%d") # 07/06
4、类型转换
时间一般表示为:时间对象、时间字符串、时间戳
通过
获取到的时间变量,类型为:datetime,那么datetime与str类型如何互相转换呢?
datetime-->str
time_str = datetime.datetime.strftime(curr_time,'%Y-%m-%d %H:%M:%S') # 2019-07-06 15:50:12
str-->datetime
time_str = '2019-07-06 15:59:58'
curr_time = datetime.datetime.strptime(time_str,'%Y-%m-%d %H:%M:%S')
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中找到所有数字?09/26
- ♥ python有哪些功能08/12
- ♥ 如何在python中运行cmd命令08/11
- ♥ php和python有什么区别09/30
- ♥ 如何在python3中导入包10/28
- ♥ python描述符是什么意思11/10
内容反馈