我得到了:
rm: /data/local/tmp: Permission denied.
如果没有\ nl,我什至无法显示数据
我正在寻找像这样的几个小窗户:
谢谢。
答案 0 :(得分:0)
一种可能的解决方案是使用回车符\r
,该命令将终端中的光标重置为当前行的开头。例如。
import sys
import time
# Print first line
print('this will disappear', end='')
sys.stdout.flush()
time.sleep(1)
# Replace it
print('\rand be replaced by this', end='')