6、continue语句

while True:
    s = input('Enter something : ')
    if s == 'quit':
        break
    if len(s) < 3:
        print('Too small')
        continue
print('Input is of sufficient length')
# 自此处起继续进行其它任何处理
原文地址:https://www.cnblogs.com/ludongjun/p/8321895.html