1#the loop
2for x in (1, 10, 1):
3 #type break to end loop before loop stops
4 break
1for x in range (0, 20 + 1, 5):
2 print(x)
3 if x == 20: break
4
5print('bob')
6
7"""
8output:
9
100
115
1210
1315
1420
15bob
16
17"""
18
19#I hope it helps! -Andrew Ma
20
21#make sure when you print bob don't indent or else
22it will think it is part of the for loop! :)
23