About 15,000,000 results
Open links in new tab
  1. python - What is a tuple useful for? - Stack Overflow

    Sep 9, 2014 · 1 A tuple is useful for storing multiple values.. As you note a tuple is just like a list that is immutable - e.g. once created you cannot add/remove/swap elements. One benefit of …

  2. What's the difference between lists and tuples? - Stack Overflow

    Mar 9, 2009 · What are the differences between lists and tuples, and what are their respective advantages and disadvantages?

  3. How does tuple comparison work in Python? - Stack Overflow

    Tuples are compared position by position: the first item of the first tuple is compared to the first item of the second tuple; if they are not equal (i.e. the first is greater or smaller than the …

  4. types - What are "named tuples" in Python? - Stack Overflow

    Jun 4, 2010 · Named tuples are basically easy-to-create, lightweight object types. Named tuple instances can be referenced using object-like variable dereferencing or the standard tuple …

  5. c# - How to name tuple properties? - Stack Overflow

    How and "could be" organized return from the method which returns tuple type with the name of parameters, as an example private static Tuple<string, string> methodTuple() { return new …

  6. Create a Tuple in a Linq Select - Stack Overflow

    Nov 5, 2015 · .Select(c => new Tuple<string, byte>(c.Id, c.Flag)) .ToList(); This method lets you work with Linq to Object instead Linq to Entities, so after call it,you can project the result of …

  7. c# - Tuple.Create () vs new Tuple - Stack Overflow

    Dec 13, 2014 · new Tuple<int,int>(1,2); Tuple.Create(1,2); Is there any difference between these two methods of Tuple creation? From my reading it seems to be more a convenient shorthand …

  8. Python type hints for function returning multiple return values

    Sep 25, 2019 · Actually, a Python function never returns "multiple values". What you are returning here is a tuple.

  9. python - Convert numpy array to tuple - Stack Overflow

    Apr 5, 2012 · Is there an easy way to convert that to a tuple? I know that I could just loop through, creating a new tuple, but would prefer if there's some nice access the numpy array provides.

  10. AttributeError: 'tuple' object has no attribute - Stack Overflow

    Jun 25, 2013 · This is what is called a tuple, obj is associated with 4 values, the values of s1,s2,s3,s4. So, use index as you use in a list to get the value you want, in order.