码迷,mamicode.com
首页 > 编程语言 > 详细

python3  循环输出当前时间。

时间:2019-05-27 15:13:50      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:暂停   循环输出   mamicode   port   微软   font   使用   alt   png   

题目 暂停一秒输出(使用 time 模块的 sleep() 函数)。循环输出当前时间。

代码:

import time
while True:
 time.sleep(1)
 print(time.strftime("%Y-%m-%d %H:%M:%S ",time.localtime(time.time())))

结果:

技术图片

 

python3  循环输出当前时间。

标签:暂停   循环输出   mamicode   port   微软   font   使用   alt   png   

原文地址:https://www.cnblogs.com/angellyl/p/10930670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!