Refer to this program as File A:
vocabulary = []
while True:
user_input = input('You: ')
if user_input == 'vocabulary':
print(vocabulary)
vocabulary.append(user_input)
The thing is, I want the information being appended to vocabulary
to be permanent, and not emptied every time I run the program. How can I do this?