我只是想知道如何准确地让tkinter保存当前窗口中的文本,以便当应用程序关闭并重新打开时,它仍然会在那里。什么好主意吗?
# save the data - in this case '1234', converted to a string
# the value must be a string!
with open('save.txt', 'w') as f:
f.write(str(1234))
# load the data from the file
with open('save.txt', 'r') as f:
load = f.read()
print(load)
这是一个非常的基本示例,并且只会在文件中存储一个值因为每次调用f.write()
都会覆盖现有文件!
如果你正在寻找一些更强大的东西,但仍然容易实现,尝试configparser
模块-它让你读/写*.cfg
/*.ini
文件,这是伟大的,如果你需要的是键值关系!