我想将循环输出打印到同一行的屏幕上。
我如何以最简单的方式为 Python 3.x
我知道 Python 2.7 已经通过在行尾使用逗号来询问这个问题,即 print I,但我找不到 Python 3.x 的解决方案。
i = 0
while i <10:
i += 1
## print (i) # python 2.7 would be print i,
print (i) # python 2.7 would be 'print i,'
画面输出。
1
2
3
4
5
6
7
8
9
10
我要打印的是:
12345678910
新读者也访问此链接http://docs.python.org/release/3.0.1/whatsnew/3.0.html