🐍 Python Interactive Runner
▶ Run Code
CODE EDITOR (Write your Python code)
# Example: interactive input name = input("What is your name? ") print(f"Hello, {name}!") age = int(input("How old are you? ")) print(f"In 5 years, you will be {age + 5} years old.")
TERMINAL OUTPUT (Supports input() typing)