Quick actions

cmd+k|ctrl+k

Navigation

Languages

break,continue,pass

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-21T05:41:53.879609Z

Updated

2026-07-21T05:41:53.879609Z

my_list=[1,2,3]
for item in my_list:
    
    pass
    print(item)
    
i=0
while i<len(my_list):
    print(my_list[i])
    
    i+=1
    pass
    
# while True:
#     response=input("say something: ")
#     if (response=="bye"):
#         break
INFO