w3schools
编辑器
运行结果尺寸:
625 x 591
for i in range(9): if i == 3: continue print(i)
x
for i in range(9):
if i == 3:
continue
print(i)
0
1
2
4
5
6
7
8