Comment stocker en permanence les données dans Python

import pickle

variable = "Hi"

#Save the variable
pickle.dump(variable, open("variableStoringFile.dat", "wb"))
            
#Load the variable
variable = pickle.load(open("variableStoringFile.dat", "rb"))
Testy Tapir