当前位置:   article > 正文

Python打印当前时间_python 打印时间

python 打印时间

以下是多种Python打印当前时间的实现方法:

方法1:使用datetime模块

import datetime

now = datetime.datetime.now()
print(now)
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

方法2:使用time模块

import time

now = time.localtime()
print(time.strftime("%Y-%m-%d %H:%M:%S", now))
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

方法3:使用arrow库

import arrow

now = arrow.now()
print(now)
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

方法4:使用dateutil库

from dateutil import parser

now = parser.parse(str(datetime.datetime.now()))
print(now)
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

这些方法都可以用于打印当前时间,具体使用哪种方法取决于个人偏好和项目需求。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/466185?site
推荐阅读
相关标签
  

闽ICP备14008679号