Home  >  Article  >  Backend Development  >  How to convert a list into a set in Python

How to convert a list into a set in Python

尚
Original
2019-06-28 14:15:184239browse

How to convert a list into a set in Python

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn