Quick actions

cmd+k|ctrl+k

Navigation

Languages

While Loop

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-20T16:52:23.97423Z

Updated

2026-07-20T16:52:23.97423Z

# i=0
# while 0<50:
#     print(i)
#     break

i=0
while i<50:
    print(i)
    i+=1
    break
else:
    print("done with all the work")
    
INFO