Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 149 Bytes

19. Unit 2 - Lesson 6.md

File metadata and controls

15 lines (13 loc) · 149 Bytes

Break Statement

Q1.

n=10
i=1

for num in range(1, 10):
	if i%5==0:
		break
	print(i)
	i=i+1
	
# write your code here

Q2. Need Solution