Quick actions

cmd+k|ctrl+k

Navigation

Languages

While...Loop

Snippet info

Language

Python

Visibility

public

Author

hohim4095

Created

2024-09-26T13:15:50.661756Z

Updated

2024-09-26T13:27:33.253515Z

x=1
while x<10:
    print(x)
    x=x+1
print("end of while loop")
y=1
while print("this is something"):
    print(y)
    y=y+1
    print("end of while loop")
INFO