Tuples in Python – Basics
Tuple is one of the built-in data types in Python. A Python tuple is a sequence of comma separated items, enclosed in parentheses (). The items in a Python tuple need not be of the same data type. One thing that separates tuples apart is that tuples are immutable, they cannot be changed. Following are […]
Tuples in Python – Basics Read More »