题目八:暂停一秒输出,并格式化当前时间。
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ 题目八:暂停一秒输出,并格式化当前时间。""" __author__ = ‘Fan Lijun‘ import time print(time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time()))) # 暂停一秒 time.sleep(1) print(time.strftime(‘%Y-%m-%d %H:%M:%S‘, time.localtime(time.time())))
原文地址:https://www.cnblogs.com/LoveBeautiful/p/9907505.html
时间: 2024-10-10 04:44:02