python清除输出内容_如何只清除python输出控制台中的最后一行?

我想从输出控制台窗口只清除最后几行。为了达到这个目的,我决定使用创建秒表,并且我已经实现了在键盘中断和输入键按下它创建圈,但我的代码只创建圈一次,我目前的代码是清除整个输出屏幕。如何只清除python输出控制台中的最后一行?

clear.py

import os

import msvcrt, time

from datetime import datetime

from threading import Thread

def threaded_function(arg):

while True:

input()

lap_count = 0

if __name__ == "__main__":

# thread = Thread(target = threaded_function)

# thread.start()

try:

while True:

t = "{}:{}:{}:{}".format(datetime.now().hour, datetime.now().minute, datetime.now().second, datetime.now().microsecond)

print(t)

time.sleep(0.2)

os.system('cls||clear') # I want some way to clear only previous line instead of clearing whole console

if lap_count == 0:

if msvcrt.kbhit():

if msvcrt.getwche() == '\r': # this creates lap only once when I press "Enter" key

lap_count += 1

print("lap : {}".format(t))

time.sleep(1)

continue

except KeyboardInterrupt:

print("lap stop at : {}".format(t))

print(lap_count)

,当我在我的IPython shell中运行

%run /clear.py

我可以只创建一个圈,但它没有停留永久。

2017-06-15

Gahan

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值