python_7_while】的更多相关文章

count=0 while True: print('count:',count) count+=1 # count=count+1 if count==500: break#结束整个循环…