Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 161 Bytes

20. Unit 2 - Lesson 7.md

File metadata and controls

13 lines (10 loc) · 161 Bytes

Continue Statement

Q1.

for num in range(1, 20):
	if(num<=10):
		continue


# skip all the numbers below 10

# print the numbers
	print("num:", num )