n=0 while n<100: n+=1 if n>10 and n<90: continue print(n)
当n在10到90的区间内,程序运行到continue时,会直接返回到while并直接跳过print。
输入结果为:
1 2 3 4 5 6 7 8 9 10 90 91 92 93 94 95 96 97 98 99 100
n=0 while n<100: n+=1 if n>10 and n<90: continue print(n)
当n在10到90的区间内,程序运行到continue时,会直接返回到while并直接跳过print。
输入结果为:
1 2 3 4 5 6 7 8 9 10 90 91 92 93 94 95 96 97 98 99 100
转载于:https://www.cnblogs.com/kaezah/p/9844173.html