Type your Python in the editor and press Run (or Ctrl+Enter) to execute it. Output appears in the panel below or beside the editor.
Your code is saved automatically in your browser β it'll still be there when you come back.
| βΆ Run | Execute your Python code |
| Clear | Wipe the editor clean |
| Copy | Copy all code to clipboard |
| Download | Save your code as a .py file |
| Vertical / Horizontal | Switch between stacked and side-by-side layout |
| π Text File | Create a virtual text file your code can read with open() |
Just import turtle β a drawing canvas pops up automatically when you run. Drag it anywhere on screen.
import turtle
t = turtle.Turtle()
for _ in range(4):
t.forward(100)
t.right(90)
Click π Text File, type a filename (e.g. data.txt) and paste your content, then hit Save. Your code can then read it normally:
with open("data.txt") as f:
print(f.read())
If your code has a mistake, QuickPython shows a plain-English explanation alongside the usual error β so you know exactly what went wrong and how to fix it.