A tuple is a sequence of immutable Python objects. Tuples are sequences, just like lists. The main difference between the tuples and the li...
Read More
Python 3 - Lists
The most basic data structure in Python is the sequence . Each element of a sequence is assigned a number - its position or index. The fir...
Read More
Python 3 - Strings
Strings are amongst the most popular types in Python. We can create them simply by enclosing characters in quotes. Python treats single quo...
Read More
Subscribe to:
Posts (Atom)
Python 3 - Tuples
A tuple is a sequence of immutable Python objects. Tuples are sequences, just like lists. The main difference between the tuples and the li...