死循环:
while 1 == 1: print("ok")
约束循环:
count = 0 while count < 6: print('ok') count = count + 1 print(123)
count = 0 while count < 6: print(count) count = count + 1 print(123)