Python editor
A full Python interpreter running in this tab. Nothing is sent anywhere, and the code stays in this browser.
Python
name = "world"
print(f"Hello, {name}!")
for n in range(1, 4):
print(n, n ** 2)
A full Python interpreter running in this tab. Nothing is sent anywhere, and the code stays in this browser.
name = "world"
print(f"Hello, {name}!")
for n in range(1, 4):
print(n, n ** 2)