Quick actions

cmd+k|ctrl+k

Navigation

Languages

While

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-12T19:47:13.211164Z

Updated

2025-11-12T19:49:36.112093Z

# While
i = 1
while i <= 5:
    print(i)
    i = i + 1
INFO