微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

打印到终端

如何解决打印到终端

我有一个脚本,该脚本将在终端上打印很多行。当我在前十行左右启动脚本时,这很好,但是随后打印开始出错。有谁知道为什么会这样以及如何避免呢? 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 举报,一经查实,本站将立刻删除。