From 853603b1f66d3677b676731d83db168599ba57a0 Mon Sep 17 00:00:00 2001 From: Zehra <70450368+zehranrgi@users.noreply.github.com> Date: Fri, 2 Aug 2024 07:29:12 -0700 Subject: [PATCH] Add content to Tuples (#6328) * Update tuples@i7xIGiXU-k5UIKHIhQPjE.md * Update src/data/roadmaps/python/content/tuples@i7xIGiXU-k5UIKHIhQPjE.md --------- Co-authored-by: Kamran Ahmed --- .../roadmaps/python/content/tuples@i7xIGiXU-k5UIKHIhQPjE.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)