The set() function creates an unordered set of non-repeating elements, which can perform relationship testing, delete duplicate data, and calculate intersection, difference, union, etc.
set Syntax:
class set([iterable])
Parameter description:
iterable -- iterable object object;
Return value:
Return the new collection object.
Convert the list to a set:
list1=[1,3,4,3,2,1] list1=set(list1) print(list1)
The result is as follows:
(1,2,3,4)
For more Python-related technical articles, please visit the Python Tutorial column Get studying!
The above is the detailed content of How to convert a list into a set in Python. For more information, please follow other related articles on the PHP Chinese website!