About 106,000 results
Open links in new tab
  1. Python Tuples - W3Schools

    Tuple Tuples are used to store multiple items in a single variable. 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 …

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

  4. Python Tuples - GeeksforGeeks

    Jun 9, 2026 · A tuple is an immutable ordered collection of elements. Tuples are similar to lists, but unlike lists, they cannot be changed after their creation. Can hold elements of different data types. …

  5. Tuple names - Simple English Wikipedia, the free encyclopedia

    Tuple names In philosophy, mathematics, and computer science, a tuple is an ordered list of elements. The term tuple originates from the sequence of names for such ordered lists, beginning with single, …

  6. Tuples — typing documentation

    Tuples ¶ The tuple class has some special behaviors and properties that make it different from other classes from a typing perspective. The most obvious difference is that tuple is variadic – it supports …

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

    Built from the ground up to deliver razor sharp screen sharing, crisp audio, and seamless remote control. Because programmers deserve better than a generic screen sharing tool.

  8. 5. Data Structures — Python 3.14.6 documentation

    1 day ago · Note that multiple assignment is really just a combination of tuple packing and sequence unpacking. 5.4. Sets ¶ Python also includes a data type for sets. A set is an unordered collection with …

  9. What is a Tuple? - Tuple

    Example of a Tuple The tuple is a data type in programming that allows you to store multiple values in a single variable. It is an immutable, ordered sequence of elements. In Python, tuples are defined with …

  10. std::tuple - cppreference.com

    Class template std::tuple is a fixed-size collection of heterogeneous values. It is a generalization of std::pair. If std::is_trivially_destructible<Ti>::value is true for every Ti in Types, the destructor of …