Python Basics — Day 8 Lists in
01. What is a List?
A list is a data structure that stores multiple values in order.
Use square brackets [ ] and separate values with commas.
fruits = ["Apple", "Banana", "Grape"]
numbers = [10, 20, 30, 40]
mixed = [1, "Hello", True, 3.14]
👉 Ke...
sabinsim.hashnode.dev2 min read