I would like to have my program store something in a list, and no matter what always have it in that list whether the program is restarted and so on.
Ive already tried the .add function, but I cant have .add on a list.
useradd_list = []
UserQuoteAdd_str in addquote_list:
UserQuoteAdd_str = raw_input("What is your quote?")
useradd_list.append(UserQuoteAdd_str)
What I need is a function that will save whatever the user types in memory and even if the program restarts, the list still has what the user typed.