【Python】【demo实验13】【练习实例】【暂停1s输出】
原题:
暂停1s输出
使用time 模块:
>>> dir(time) ['_STRUCT_TM_ITEMS', '__doc__', '__loader__', '__name__', '__package__', '__spec__', 'altzone', 'asctime', 'clock', 'ctime', 'daylight', 'get_clock_info', 'gmtime', 'localtime', 'mktime', 'monotonic', 'monotonic_ns', 'perf_counter', 'perf_counter_ns', 'process_time', 'process_time_ns', 'sleep', 'strftime', 'strptime', 'struct_time', 'thread_time', 'thread_time_ns', 'time', 'time_ns', 'timezone', 'tzname'] >>>
源代码:
#!/usr/bin/python # encoding=utf-8 # -*- coding: UTF-8 -*- # 暂停1s输出 本题实现偶数,间隔2s输出,便于观察输出效果 import time for i in range(10): print(i) if i%2 == 0: time.sleep(2)
原文给出的答案:
————————(我是分割线)————————
参考:
1. RUNOOB.COM:https://www.runoob.com/python/python-exercise-example9.html
备注:
初次编辑时间:2019年9月24日20:07:30
环境:Windows 7 / Python 3.7.2
————————
欢迎访问我的博客;
如果您觉得有用,请点赞!
说明:
标题带有*表示重要或待重新查看确认
标题带有#表示未编辑完成;待补充
标题带有######表示为概要目录