Quick actions

cmd+k|ctrl+k

Navigation

Languages

While loop (2-12-2024)

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-02T08:48:16.462664Z

Updated

2024-12-02T08:48:16.462664Z

x=10
while x>= 0:
    print(x)
    x=x-1
INFO