list1 = list() # an empty list
list2 = list([3.2, 4, 0.12]) # again elements in a list can be of different types
list3 = list(["@@", "###", ""]) # you can use symbols too
list4 = list("1234") # creating list from string
print(list1)
print(list2)
print(list3)
print(list4)