在Python中,可以使用datetime
模块来打印时间。示例代码如下:
import datetime
current_time = datetime.datetime.now()
print("当前时间:", current_time)
输出结果类似于:
当前时间: 2022-06-01 10:30:15.123456
还可以使用strftime
方法来格式化打印时间。示例代码如下:
import datetime
current_time = datetime.datetime.now()
formatted_time = current_time.strftime("%Y-%m-%d %H:%M:%S")
print("当前时间:", formatted_time)
输出结果类似于:
当前时间: 2022-06-01 10:30:15
在strftime
方法中,%Y
代表四位数的年份,%m
代表两位数的月份,%d
代表两位数的日期,%H
代表24小时制的小时,%M
代表分钟,%S
代表秒。你可以根据需要自由组合这些格式化字符来满足你的需求。