Python empty list and append [Example]

# Empty list
my_list = []

# Append to The empty List
my_list.append('Python')

# Print
print(my_list)

Output:

['Python']