Quick actions

cmd+k|ctrl+k

Navigation

Languages

break, continue, pass

Snippet info

Language

Python

Visibility

public

Author

gustav

Created

2026-07-24T03:24:33.73098Z

Updated

2026-07-25T06:21:41.217631Z

my_list = [1,2,3]
for item in my_list:
    print(item)
    break
    
    

#while True:
    #response = input('say something :' )
    #if (response == 'byee'):
       # continue
    
INFO