Playground
Python
브라우저에서 Python 실행 (Pyodide)
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
# Python Playground # Running with Pyodide (WebAssembly) def greet(name): return f"Hello, {name}!" message = greet("Playground") print(message) # Try some calculations numbers = [1, 2, 3, 4, 5] total = sum(numbers) print(f"Sum: {total}")
Preview
Console
Python
main.py
UTF-8
Ln 1, Col 1
Spaces: 2