Learn Python, Microsoft 365 and Google Workspace
for i in range(5):
if i == 3:
continue
print(i)
Watch this video for answer: https://youtube.com/shorts/x7CIxqoqccY
for i in range(5):
if i == 3:
break
print(i)
Watch this video for answer: https://youtube.com/shorts/XNLL6j-P61A
youtube@yasirbhutta
i = 0
while i < 5:
i += 1
if i == 3:
break
print(i)
else:
print("Loop completed")
- A) 1 2
- B) 1 2 Loop completed
- C) 1 2 3
- D) 1 2 3 Loop completed