Quick actions

cmd+k|ctrl+k

Navigation

Languages

For Loop

Snippet info

Language

Python

Visibility

public

Author

fungalan886

Created

2025-10-08T11:30:39.507294Z

Updated

2025-10-08T12:02:26.931805Z

for i in range(10):
    print(i)
for i in range(5,27):  ### start = 5, end = 27 -1, step = 1
    print (i)
for i in range(13,176,27): ### start = 13, end = 13, step = 17
    print (i)
    
    ### break = continue the remaining program
    ### exit = exit the program
INFO