If you only want one item’s count, use the count
method:
>>> [1, 2, 3, 4, 1, 4, 1].count(1) 3
Important Note regarding count performance
Don’t use this if you want to count multiple items.
Calling count
in a loop requires a separate pass over the list for every count
call, which can be catastrophic for performance.
If you want to count all items, or even just multiple items, use Counter
, as explained in the other answers.
Related Posts:
- How to sort a list of objects based on an attribute of the objects?
- How can I reverse a list in Python?
- Difference between del, remove, and pop on lists
- What is the difference between Python’s list methods append and extend?
- Python – TypeError: ‘int’ object is not iterable
- Understanding slice notation
- Understanding slice notation
- IndexError: list index out of range and python
- Python – TypeError: ‘int’ object is not iterable
- How to convert list to string [duplicate]
- How do I get the number of elements in a list?
- Finding the index of an item in a list
- How to make a flat list out of a list of lists
- Removing duplicates in lists
- What does the list() function do in Python?
- Why does this iterative list-growing code give IndexError: list assignment index out of range?
- TypeError: ‘float’ object is not subscriptable
- Transpose/Unzip Function (inverse of zip)?
- Python: finding an element in a list [duplicate]
- How to avoid “RuntimeError: dictionary changed size during iteration” error?
- How to avoid “RuntimeError: dictionary changed size during iteration” error?
- Finding the average of a list
- Writing a list to a file with Python
- How do I concatenate two lists in Python?
- if else in a list comprehension
- How can I randomly select an item from a list?
- Print a list in reverse order with range()?
- Get unique values from a list in python [duplicate]
- Fastest way to check if a value exists in a list
- Why is it string.join(list) instead of list.join(string)?
- Why is it string.join(list) instead of list.join(string)?
- How do I concatenate two lists in Python?
- if else in a list comprehension
- Finding median of list in Python
- Python set to list
- Python List vs. Array – when to use?
- How to find all occurrences of an element in a list
- How to find all the indexes of a recurring item in a list?
- python – if not in list
- How do I concatenate two lists in Python?
- Replace values in list using Python
- Get unique values from a list in python
- ‘list’ object has no attribute ‘shape’
- Writing a list to a file with Python
- Pandas ‘count(distinct)’ equivalent
- Python: Get the first character of the first string in a list?
- Understanding slice notation
- How do I find the duplicates in a list and create another list with them?
- Add list to set?
- How to remove an element from a list by index
- Apply function to each element of a list
- TypeError: unsupported operand type(s) for -: ‘list’ and ‘list’
- Remove all occurrences of a value from a list?
- Python return list from function
- TypeError: list indices must be integers or slices, not str
- In Python, when to use a Dictionary, List or Set?
- Whats the difference between ‘for x in list:’ and ‘for x in list[:]:’
- Removing Punctuation From Python List Items
- Check if two unordered lists are equal
- ‘list’ object has no attribute ‘shape’
- How do I find the duplicates in a list and create another list with them?
- How can I compare two lists in python and return matches
- How can I get list of values from dict?
- AttributeError: ‘list’ object has no attribute ‘replace’ when trying to remove character
- AttributeError: ‘list’ object has no attribute ‘replace’ when trying to remove character
- How to append multiple values to a list in Python
- How do you split a list into evenly sized chunks?
- Count the number of occurrences of a character in a string
- How to read a text file into a list or an array with Python
- Map to List error: Series object not callable
- How to return dictionary keys as a list in Python?
- How can I create an array/list of dictionaries in python?
- How to sort a list/tuple of lists/tuples by the element at a given index?
- Subtracting two lists in Python
- How to multiply all integers inside list
- Get the cartesian product of a series of lists?
- What does the “x for x in” syntax mean?
- How to remove square brackets from list in Python?
- numpy-equivalent of list.pop?
- Create nice column output in python
- TypeError: only integer arrays with one element can be converted to an index 3
- Logical indexing with lists
- How does str(list) work?
- convert csv file to list of dictionaries
- creating a reverse method for a python list from scratch
- How to split elements of a list?
- Find object in list that has attribute equal to some value (that meets any condition)
- Turn a single number into single digits Python
- How to create a list of objects?
- Iterating through list of list in Python
- In Python, is there an elegant way to print a list in a custom format without explicit looping?
- Get difference between two lists
- Circular list iterator in Python
- How is Python’s List Implemented?
- How to find length of digits in an integer?
- Sorting list based on values from another list
- Create a list with initial capacity in Python
- Python initializing a list of lists
- Does Python have an immutable list?