这很好用
x = 0 while True: x += 1 print(x)
而这
x = 0 while True: print(x += 1)
不
我想要一个可以计数到无穷大或至少直到最大位数的程序
python syntax python-3.x
python ×1
python-3.x ×1
syntax ×1