ProgramWise
about
learn python
code runner
license info
TCO presentation
contact
Python Interpreter
Loading Python runtime…
# Try some Python! Click "Run" or press Ctrl+Enter name = input("Enter your name: ") print(f"Hello, {name}!") import math print(f"Pi is approximately {math.pi:.4f}") for i in range(5): print(f"Count: {i}")
Run ▶
Clear output
Ctrl+Enter to run
Output will appear here…