🐍 The Python Universe 🐍

Learn Python β€” the versatile language for web, data, AI, and more! πŸš€

πŸ’‘ What Is Python?

Python is a high-level, beginner-friendly programming language known for its readability, simplicity, and versatility.

β€œPython is easy to learn but powerful enough to change the world.”

🧩 Basics

Variables, data types, and simple operations:


# Variables
name = "Dyl"
age = 15

# Operations
sum = 2 + 3
print(sum)  # Output: 5
  

βš™οΈ Functions

Functions allow reusable blocks of code:


def greet(user):
    return f"Hello, {user}!"

print(greet("Dyl"))
  

πŸ” Loops

Loops let you repeat actions:


for i in range(5):
    print(f"Loop {i}")
  

πŸ•ΉοΈ Try Python Yourself

Type your Python code below and see the output.