In Python, numerical data types are used to store and perform operations with numbers. Python supports three main numerical types:

  1. Integer (int)
  2. Floating Point (float)
  3. Complex Numbers (complex)

1️⃣ Integer (int)

✅ Examples:

x = 5
age = -10
zero = 0

🔹 Properties:

2️⃣ Float (float)

✅ Examples:

price = 19.99
height = -1.75
pi = 3.14159

🔹 Scientific Notation:

You can also write floats using exponential (scientific) notation:

value = 1.2e3  # = 1200.0