About 62,300 results
Open links in new tab
  1. 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.

  2. Tuple - Wikipedia

    Tuple In mathematics, a tuple is a finite sequence (or ordered list) of numbers. More generally, it is a sequence of mathematical objects, called the elements of the tuple. An n-tuple is a tuple of n …

  3. std::tuple - cppreference.com

    Since the "shape" of a tuple – its size, the types of its elements, and the ordering of those types – are part of its type signature, they must all be available at compile time and can only depend on other …

  4. 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 both …

  5. 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.

  6. Tuple: the best remote pair programming app on macOS and Windows

    Tuple allows me to thrive as an independent developer, easily chatting with freelance clients, mentoring others, and collaborating on open-source projects.

  7. 5. Data Structures — Python 3.14.5 documentation

    20 hours ago · A tuple consists of a number of values separated by commas, for instance: ... As you see, on output tuples are always enclosed in parentheses, so that nested tuples are interpreted …

  8. Python's tuple Data Type: A Deep Dive With Examples

    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 situations …

  9. How to Declare and Use Tuples in Python?

    Apr 6, 2026 · A tuple is a collection of items that is ordered and immutable. Think of it like a fixed record; once you create it, you cannot change, add, or remove its elements.

  10. What Is a Tuple in Python? Syntax, Examples, and When to Use One

    Feb 28, 2026 · A tuple in Python is an ordered, immutable collection of elements. Once you create a tuple, you cannot change, add, or remove its items. That single characteristic — immutability — is …