diff --git a/Programming_Languages/Python/Syntax/Tuples_in_Python.md b/Programming_Languages/Python/Syntax/Tuples_in_Python.md index 2381723..f3f5af1 100644 --- a/Programming_Languages/Python/Syntax/Tuples_in_Python.md +++ b/Programming_Languages/Python/Syntax/Tuples_in_Python.md @@ -6,7 +6,7 @@ tags: [python, data-structures] # Tuples in Python -Tuples are one of the main data-structures or containers in Python. +Tuples are one of the main data-structures or containers in Python. Tuples are useful in cases where you want to group related data and ensure that it will not change. Tuples have the following properties: @@ -16,6 +16,8 @@ Tuples have the following properties: - **Allow duplicate** members - They are **indexed** +> In essence a tuple is a list that is immutable. + As with all containers in Python they permit any data type. > Tuples are denoted with `(...)`