About 123,000 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 …

  2. Tuple - Wikipedia

    In mathematics, a tuple is a finite sequence (or ordered list) of numbers. More generally, it is a sequence of mathematical objects, …

  3. Python Tuples - GeeksforGeeks

    Jun 9, 2026 · We can access the elements of a tuple by using indexing and slicing, similar to how we access elements in a list. …

  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 …

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

    Draw or type on a shared screen to draw attention to something or emphasize a point. Or use Tuple as a shared virtual whiteboard.

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

  7. What is a Tuple? - Tuple

    A tuple is an ordered, immutable collection of elements of different data types. In Python, it is denoted using parentheses () and the …

  8. What is a tuple? | Definition from TechTarget

    May 31, 2023 · In mathematics, a tuple is an ordered sequence of values. The values can be repeated, but their number is always …

  9. std::tuple - cppreference.com

    Class template std::tuple is a fixed-size collection of heterogeneous values. It is a generalization of std::pair. If …

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