Python - List Append Elements
================
words = list()
print(words)
words.append(‘animal’)
words.append(‘food’)
words.append(‘city’)