how to create an empty list in python code example
Example 1: how to create a list in python
new_list = []
item1 = "string1"
item2 = "string2"
new_list.append(item1)
new_list.append(item2)
print(new_list[0])
print(new_list[1])
Example 2: python list empty
my_list = list()
if len(my_list) == 0:
pass
if my_list == []:
pass
if not my_list:
pass
Example 3: py create empty list
a = []
print("Values of a:", a)
print("Type of a: ", type(a))
print("Size of a: ", len(a))
Example 4: empty list in python
a = []
Example 5: python how to make an empty list
list = list()
Example 6: python empty list
if not a:
print("List is empty")