01 while 循环输入1 2 3 4 5 6 8 9 10
start = 1
while True:
if start == 7:
start += 1
continue
print(start)
start += 1
if start == 11:
break
start = 1
while True:
if start == 7:
start += 1
continue
print(start)
start += 1
if start == 11:
break