About 66 results
Open links in new tab
  1. What is the difference between list and list [:] in python?

    Nov 2, 2010 · When reading, list is a reference to the original list, and list[:] shallow-copies the list. When assigning, list (re)binds the name and list[:] slice-assigns, replacing what was previously …

  2. How do I make a flat list out of a list of lists? - Stack Overflow

    If your list of lists comes from a nested list comprehension, the problem can be solved more simply/directly by fixing the comprehension; please see How can I get a flat result from a list …

  3. What is the difference between list [1] and list [1:] in Python?

    Oct 5, 2012 · By using a : colon in the list index, you are asking for a slice, which is always another list. In Python you can assign values to both an individual item in a list, and to a slice …

  4. Quick way to create a list of values in C#? - Stack Overflow

    I'm looking for a quick way to create a list of values in C#. In Java I frequently use the snippet below:

  5. What is the difference between an Array, ArrayList and a List?

    List<int> list = new List<int>(); list.Add(6); List.Add(8); I know that in a List you can have the generic type so you can pass in any type that you cannot do in an Array but my exact …

  6. Python: list of lists - Stack Overflow

    The first, [:], is creating a slice (normally often used for getting just part of a list), which happens to contain the entire list, and thus is effectively a copy of the list. The second, list(), is using the …

  7. python - Removing duplicates in lists - Stack Overflow

    Nov 1, 2011 · How can I check if a list has any duplicates and return a new list without duplicates?

  8. python - Why does "example = list (...)" result in "TypeError: 'list ...

    If you declare a variable named list in your module's global namespace, the interpreter will never search for that name in a higher-level namespace (that is __builtins__). Similarly, suppose you …

  9. Meaning of list[-1] in Python - Stack Overflow

    I have a piece of code here that is supposed to return the least common element in a list of elements, ordered by commonality: def getSingle(arr): from collections import Counter c = …

  10. python - Access item in a list of lists - Stack Overflow

    Jul 19, 2014 · You can access the elements in a list-of-lists by first specifying which list you're interested in and then specifying which element of that list you want. For example, 17 is …