Untitled

Anonymous
python
03/26/2024 6:59 PM
176 B
17
Indexable
print("This is a python script")
for i in range(1,12):
    print(i)
    if(i == 12):
        break
    else:
        continue
    

Editor is loading...
Leave a Comment