Online Python Compiler
Python Editor
Run
Clear
# Welcome to Python Online Compiler print("Hello, World!") # Calculate factorial def factorial(n): return 1 if n == 0 else n * factorial(n-1) print(f"Factorial of 5 is {factorial(5)}") # Simple list comprehension squares = [x**2 for x in range(10)] print(f"Squares: {squares}")
Output
Python 3.x