We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8ca515 commit 52717b2Copy full SHA for 52717b2
python_study_2/page10/script.py
@@ -0,0 +1,7 @@
1
+numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
2
+for number in numbers:
3
+ # Skip the loop for numbers divisible by 3
4
+ if number % 3 == 0:
5
+ continue
6
+
7
+ print(number)
0 commit comments