Google Colab 不打印循环输出
Google Colab does not print for loop output
我正在使用 Google Colab,发现它不打印循环输出。请查看以下屏幕截图的输出,单元格运行但未打印任何输出。有没有人有这个问题,如何解决?谢谢
for i in range(5):
print('{0} out of {1} numbers have been printed'.format(i+1,5),end='\r')
我不知道为什么。但是,如果您希望第一个打印被下一个打印替换,您可以通过在开头添加 \r
并让结尾为空来尝试此代码。
for i in range(5):
print('\r {0} out of {1} numbers have been printed'.format(i+1,5),end='')
你会得到结果
5 out of 5 numbers have been printed
我正在使用 Google Colab,发现它不打印循环输出。请查看以下屏幕截图的输出,单元格运行但未打印任何输出。有没有人有这个问题,如何解决?谢谢
for i in range(5):
print('{0} out of {1} numbers have been printed'.format(i+1,5),end='\r')
我不知道为什么。但是,如果您希望第一个打印被下一个打印替换,您可以通过在开头添加 \r
并让结尾为空来尝试此代码。
for i in range(5):
print('\r {0} out of {1} numbers have been printed'.format(i+1,5),end='')
你会得到结果
5 out of 5 numbers have been printed