Unit 2 - Lesson 7

21.1.1. Understanding Continue statement

for num in range(1, 20):
# skip all the numbers below 10
	if num in range(1,11):
		continue
# print the numbers
	print("num:", num )

Post a Comment