Answers for "create set from list"

1

python list to set

 
listOfStudents=['Mohan','John','Ramesh','Mohan','John']
print("List of Students:",listOfStudents)
uniqueNames=set(listOfStudents)
print("Set of uniqueNames:",uniqueNames)
 
listOfMarks=[8,7,6,7,8,8,7,6,7,8,9]
print("List of Makrs:",listOfMarks)
setOfMarks=set(listOfMarks)
print("Set of marks:",setOfMarks)
 
Posted by: Guest on January-03-2022
1

Set to List

sample_set = frozenset({10, 20, 30, 40})
my_list = list(sample_set)
print(my_list)
Posted by: Guest on October-04-2021
1

list set python

myset = {"apple", "banana", "cherry"}
mylist = ["dog", "cat", "humanoid"]
mydict = {'planet': 'blue', 'edges': 4, 'perimeter':15}
Posted by: Guest on May-03-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language