06. Dictionaries
Tuples
A list is a mutable data type. Mutable data can be updated anytime.
Tuple is a immutable data. It can not be modified.
>>> tuple1 = (1, 2, 3)
>>> print(tuple1)
(1, 2, 3)
>>> tuple2 = 1, 2, 3
>>> print(tuple2)
(1, 2, 3)
Read data from a tu...
python-beginner.hashnode.dev3 min read