The main differnce between Tuples and list is that items from lists
can be modified I could add or delete items from a list.
I could modify the list in any sort of way I would want, however,
at Tuples you can not add or delete items. Tuples are immutable, people
use tuples for data that is never going to be changed.
Lists are used to store multiple items in a single variable.
Whereas Tuples are also used to store multiple items in a single variable.
The difference between them is that A list is changeable whereas Tuple is unchangeable
and also lists are created with Square Brackets but Tuples are created with Round Brackets