-1

I want to take an input from someone and save it in a dictionary even after I end the program so that I can run it again and retrieve the information. How do I do this?

1 Answers1

1

You need to save the information to a file or database when the program ends and reload it when it starts. Pickle is one way you can do that.