🧮 4 Types of Integer Literals in Python
1️⃣ Decimal Integer (Base 10)
👑 This is the most common and default number type.
These are the numbers we normally use in daily life.
Uses digits from 0 to 9.
No prefix is required.
✅ Example:
x = 123
y = 2024
🧠 Base: 10✍️ Prefix: None
2️⃣ B...
safiakhatoon.hashnode.dev2 min read