淘先锋技术网

首页 1 2 3 4 5 6 7

python怎么循环所有整数?

所有整数?无限循环要用到while循环,也就是while True:,要整数的话,可能是这样的,代码如下(是一个死循环,不建议这样做)

n =1

while True:

print(n)

n += 1