Discuss / Python / 交作业

交作业

Topic source

n=1

m=1

while n==1:

 m=m+1

 if m > 20:

  break

 print(n)


  • 1

Reply