Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
i = 0 while i < 6: i += 1 if i == 3: continue print(i) # Note that number 3 is missing in the result
1
2
4
5
6