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

posted @ 2018-10-14 10:49  自由自在多快乐  阅读(221)  评论(0编辑  收藏  举报