We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you store the whole list to a file ... and unfreeze it later
The text was updated successfully, but these errors were encountered:
Hi,
Could you write more details about it?
To store and restore entire list in single file you can use python module pickle and save it as usual file.
pickle
To store list:
import pickle my_list = [1, 2, 3] with open("my_file.pickle", "wb") as f: pickle.dump(my_list, f)
To restore list:
import pickle with open("my_file.pickle", "rb") as f: my_list = pickle.load(my_list, f)
Sorry, something went wrong.
No branches or pull requests
Can you store the whole list to a file ... and unfreeze it later
The text was updated successfully, but these errors were encountered: