It depends on what you are intending to do with it.
Sets are significantly faster when it comes to determining if an object is present in the set (as in x in s
), but are slower than lists when it comes to iterating over their contents.
You can use the timeit module to see which is faster for your situation.
Related Posts:
- In Python, when to use a Dictionary, List or Set?
- Get difference between two lists
- What is the difference between Python’s list methods append and extend?
- Fastest way to check if a value exists in a list
- Python set to list
- Replace values in list using Python
- Add list to set?
- How to make a set of lists
- Difference between del, remove, and pop on lists
- Python – TypeError: ‘int’ object is not iterable
- Understanding slice notation
- IndexError: list index out of range and python
- Python – TypeError: ‘int’ object is not iterable
- 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?
- Append values to a set in Python
- 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 can I remove a key from a Python dictionary?
- 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]
- How can I count the occurrences of a list item?
- 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
- Python List vs. Array – when to use?
- How to find all occurrences of an element in a list
- Get list from pandas dataframe column or row?
- 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?
- How can I compare two lists in python and return matches
- Get unique values from a list in python
- ‘list’ object has no attribute ‘shape’
- How do I check if a list is empty?
- Empty set literal?
- Python: Get the first character of the first string in a list?
- How do I find the duplicates in a list and create another list with them?
- How to remove an element from a list by index
- 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
- 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
- How to sort a list of objects based on an attribute of the objects?
- 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?
- How to implement a binary search tree in Python?
- How to read a text file into a list or an array with Python
- Map to List error: Series object not callable
- 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?
- Type error Unhashable type:set
- Subtracting two lists in Python
- How to have a set of sets 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
- TypeError: ‘set’ object does not support indexing
- Logical indexing with lists
- How does str(list) work?
- Python Set Comprehension
- creating a reverse method for a python list from scratch
- 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?
- Circular list iterator in Python
- How is Python’s List Implemented?
- Sorting list based on values from another list
- Converting a list to a set changes element order
- Create a list with initial capacity in Python
- Python initializing a list of lists
- Does Python have an immutable list?