Python Basics — Day 11 Tuples & Sets in Python
01. Tuples
✅ Features
Store multiple values in order (similar to lists)
Use parentheses ( )
Immutable (cannot be changed) → good for read-only data
fruits = ("Apple", "Banana", "Grape")
print(fruits[0]) # Apple
print(fruits[-1]) # Grape
✅ Tu...
sabinsim.hashnode.dev2 min read