About 95,600 results
Open links in new tab
  1. 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 …

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

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

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

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

  6. How to Declare and Use Tuples in Python?

    Apr 6, 2026 · Learn how to declare and use tuples in Python with this expert guide. Discover methods for packing, unpacking, and immutability with practical US-based examples

  7. Python - Access Tuple Items - W3Schools

    W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

  8. 5. Data Structures — Python 3.14.5 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. 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 …

  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.