Discuss / Python / Day-5打卡

Day-5打卡

Topic source

请写出一个无限循环的程序。

n=0

while n>=0:

  n+=1

  print(n)


  • 1

Reply