Hello World!

1
print("Hello, World");

Swap 2 variables in one line

1
2
3
x, y = 1, 2
x, y = y, x
print(x, y)