how to set list in python code example
Example 1: creating a list in python
myList = [value,value,value] #note that you can use any amount of value
#you don not have to use value
Example 2: empty set python
# Distinguish set and dictionary while creating empty set
# initialize a with {}
a = {}
# check data type of a
print(type(a))
# initialize a with set()
a = set()
# check data type of a
print(type(a))