如何使用tkinter重新打开应用程序时使文本留在文本框中



我只是想知道如何准确地让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文件,这是伟大的,如果你需要的是键值关系!

相关内容

  • 没有找到相关文章

最新更新