Discuss / Python / 死循环。

死循环。

Topic source

q = 1

while q >= 1:

    q = q+1

    print(q)


  • 1

Reply