« Back to Python Tutorial
Python Editor
— Pyodide (CPython in WebAssembly)
Sample programs…
Clear console
Clear code
Run »
Loading Pyodide… (first run downloads ~10 MB)
|
Tip:
Ctrl
+
Enter
to run
PYTHON
# Welcome to the iwantcoding.com Python playground. # This is real CPython running in your browser via Pyodide. print('Hello, Python!') import sys print('Running Python', sys.version.split()[0]) from collections import Counter text = 'the quick brown fox jumps over the lazy dog the fox the fox' print(Counter(text.split()).most_common(3))
CONSOLE
Output of print() and uncaught errors will appear here.