diff --git a/src/data/roadmaps/python/content/tuples@i7xIGiXU-k5UIKHIhQPjE.md b/src/data/roadmaps/python/content/tuples@i7xIGiXU-k5UIKHIhQPjE.md index b6ab1501f..22a20e900 100644 --- a/src/data/roadmaps/python/content/tuples@i7xIGiXU-k5UIKHIhQPjE.md +++ b/src/data/roadmaps/python/content/tuples@i7xIGiXU-k5UIKHIhQPjE.md @@ -1 +1,5 @@ -# Tuples \ No newline at end of file +# Tuples + +Tuples are immutable sequences, meaning that once a tuple is created, its elements cannot be changed. Tuples are often used to store related pieces of information. They are defined by placing the elements inside parentheses () separated by commas. + +- [@article@Tuples Documentation](https://docs.python.org/3/tutorial/datastructures.html#tuples-and-sequences)