About 324,000 results
Open links in new tab
  1. Tuple - Wikipedia

    In mathematics, a tuple is a finite sequence or ordered list of numbers or, more generally, mathematical objects, which are called the elements of the tuple. An n-tuple is a tuple of n …

  2. Python Tuples - W3Schools

    Tuple is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Set, and Dictionary, all with different qualities and usage.

  3. 5. Data Structures — Python 3.14.2 documentation

    1 day ago · 5. Data Structures ¶ This chapter describes some things you’ve learned about already in more detail, and adds some new things as well. 5.1. More on Lists ¶ The list data type has …

  4. Python Tuple: How to Create, Use, and Convert

    Sep 16, 2025 · Learn how to create a Python tuple, how to use tuples, how to convert them to lists and strings, and how tuples differ from lists and sets.

  5. Tuple Operations in Python - GeeksforGeeks

    Jul 23, 2025 · Python Tuple is a collection of objects separated by commas. A tuple is similar to a Python list in terms of indexing, nested objects, and repetition but the main difference between …

  6. tuple | Python’s Built-in Data Types – Real Python

    In Python, a tuple is a built-in data type that allows you to create immutable sequences of values. The values or items in a tuple can be of any type. This makes tuples pretty useful in those …

  7. What is a Tuple? - Tuple

    Want to know what a Tuple is? View everything you need to know about the Tuple term here. Tuple explains this and more.

  8. Tuples — Interactive Python Course

    A tuple in Python is an ordered, immutable collection of elements that can be of different types. Simply put, it's like a list, but one that cannot be changed after creation.

  9. Tuples - Learn Python: Complete Beginner Course | OpenPython

    Tuples: Immutable Lists Tuples are like lists, but cannot be changed after creation: point = (10, 20) rgb = (255, 128, 0) Use parentheses () instead of brackets [].

  10. Python Tuple (With Examples) - Programiz

    Python Tuple A tuple is a collection similar to a Python list. The primary difference is that we cannot modify a tuple once it is created.