内容简介:我希望时间应该在清除前一行的同一行中收到.翻译自:https://stackoverflow.com/questions/26584003/output-to-the-same-line-overwriting-previous
我希望时间应该在清除前一行的同一行中收到.
你可以
use the “return”-character
\r
to return to the beginning of the line
.在 Python 2.x中,你必须使用sys.stdout.write和sys.stdout.flush而不是print. import time, sys while True: sys.stdout.write("\r" + time.ctime()) sys.stdout.flush() time.sleep(1)
在Python 3.3中,您可以使用
print
函数,包含end和flush参数:
print(time.ctime(), end="\r", flush=True)
但请注意,这样您只能替换屏幕上的最后一行.如果您想在更复杂的仅限控制台的UI中使用“实时”时钟,则应查看
curses
.
import time, curses scr = curses.initscr() scr.addstr(0, 0, "Current Time:") scr.addstr(2, 0, "Hello World!") while True: scr.addstr(0, 20, time.ctime()) scr.refresh() time.sleep(1)
翻译自:https://stackoverflow.com/questions/26584003/output-to-the-same-line-overwriting-previous
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 一行一行源码分析清楚AbstractQueuedSynchronizer
- 一行一行手敲webpack4配置
- HashMap源码全解析从一道面试题说起:请一行一行代码描述下hashmap put方法
- 幻术,一行代码实现镂空效果
- 一行代码逃逸 Safari 沙箱
- 一行代码实现 UIView 镂空效果
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。