打印到终端

问题描述

我有一个脚本,该脚本将在终端上打印很多行。当我在前十行左右启动脚本时,这很好,但是随后打印开始出错。有谁知道为什么会这样以及如何避免呢? I / O缓冲区?

This is how the print statements look in the terminal

def printing_test():    
   print(Fore.WHITE + Style.BRIGHT + '[' + datetime.Now().strftime('%H:%M:%s.%f')[:-3] + '] ' + '[System] - ' + Fore.YELLOW + Style.BRIGHT + '[Task ' + '1' + f" | SYstem] - Print Line 1..\r" + Style.RESET_ALL)
   sleep(0.3)    
   print(Fore.WHITE + Style.BRIGHT + '[' + datetime.Now().strftime('%H:%M:%s.%f')[:-3] + '] ' + '[System] - ' + Fore.magenta + Style.BRIGHT + '[Task ' + '1' + f" | SYstem] - Print Line 2\r" + Style.RESET_ALL)    
   sleep(0.3)    
   print(Fore.WHITE + Style.BRIGHT + '[' + datetime.Now().strftime('%H:%M:%s.%f')[:-3] + '] ' + '[System] - ' + Fore.YELLOW + Style.BRIGHT + '[Task ' + '1' + f" | SYstem] - Print Line 3..\r" + Style.RESET_ALL)    
   sleep(0.3)    
   print(Fore.WHITE + Style.BRIGHT + '[' + datetime.Now().strftime('%H:%M:%s.%f')[:-3] + '] ' + '[System] - ' + Fore.GREEN + Style.BRIGHT + '[Task ' + '1' + f" | SYstem] - Print Line 4\r" + Style.RESET_ALL)    
   sleep(60)

我意识到这可能也不是展示这些印刷品的最优雅的方式,但是,现在,我只是在回答为什么印刷声明在第10行左右就开始搞砸了。

谢谢!

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)