1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

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 <kamranahmed.se@gmail.com>
This commit is contained in:
Zehra
2024-08-02 07:29:12 -07:00
committed by GitHub
parent 90df0a3a4d
commit 853603b1f6

View File

@@ -1 +1,5 @@
# 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)