About 24,300,000 results
Open links in new tab
  1. How do I concatenate two lists in Python? - Stack Overflow

    Python >= 3.5 alternative: [*l1, *l2] Another alternative has been introduced via the acceptance of PEP 448 which deserves mentioning. The PEP, titled Additional Unpacking Generalizations, …

  2. python - Find a value in a list - Stack Overflow

    In Python 3, filter doesn't return a list, but a generator-like object. Finding the first occurrence If you only want the first thing that matches a condition (but you don't know what it is yet), it's …

  3. python - How do I make a flat list out of a list of lists? - Stack …

    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 …

  4. join list of lists in python - Stack Overflow

    Apr 4, 2009 · Closed 9 years ago. Is the a short syntax for joining a list of lists into a single list ( or iterator) in python? For example I have a list as follows and I want to iterate over a,b and c.

  5. slice - How slicing in Python works - Stack Overflow

    Python slicing is a computationally fast way to methodically access parts of your data. In my opinion, to be even an intermediate Python programmer, it's one aspect of the language that it …

  6. How do I get the number of elements in a list (length of a list) in …

    Nov 11, 2009 · Explanation Everything in Python is an object, including lists. All objects have a header of some sort in the C implementation. Lists and other similar builtin objects with a …

  7. python - Regular Expressions: Search in list - Stack Overflow

    Dec 20, 2024 · I want to filter strings in a list based on a regular expression. Is there something better than [x for x in list if r.match(x)] ?

  8. python - Best way to remove elements from a list - Stack Overflow

    Feb 2, 2014 · Python’s lists are variable-length arrays, not Lisp-style linked lists. The implementation uses a contiguous array of references to other objects, and keeps a pointer to …

  9. Python: list of lists - Stack Overflow

    First, I strongly recommend that you rename your variable list to something else. list is the name of the built-in list constructor, and you're hiding its normal function. I will rename list to a in the …

  10. Identify duplicate values in a list in Python - Stack Overflow

    Is it possible to get which values are duplicates in a list using python? I have a list of items: