Quick actions

cmd+k|ctrl+k

Navigation

Languages

2026010701

Snippet info

Language

Python

Visibility

public

Author

shaoronghong15

Created

2026-01-07T11:05:03.924114Z

Updated

2026-01-07T11:31:14.375798Z

print("Hello World!")

x = 1
y = 2
print(x+y)

while x <= 5:
    print(x)
    x += 1
    
print("%s" %(x))
INFO