Answers for "how we can convert the given list into the set in python"

7

how to convert a set to a list in python

my_set = set([1,2,3,4])
my_list = list(my_set)
print my_list
>> [1, 2, 3, 4]
Posted by: Guest on May-19-2020

Code answers related to "how we can convert the given list into the set in python"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language