Python 练习

1. 题目

暂停一秒输出,并格式化当前时间。

2. 分析

time 模块的格式化时间函数

3. 实例

点我看答案
import time

print(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()))

# 暂停一秒
time.sleep(1)

print(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()))

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""