GUI输入数据并保存

Posted aWolfMan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GUI输入数据并保存相关的知识,希望对你有一定的参考价值。

from tkinter import *

def write_to_file():
    fileContent = open("deliveries.txt","a")
    fileContent.write(depot.get()+"\n")
    fileContent.write(description.get()+"\n")
    fileContent.write(address.get("1.0",END)+"\n")
    fileContent.close()
    depot.delete(0,END)
    description.delete(0,END)
    address.delete("1.0",END)

app = Tk()
app.title("Head-Ex Deliveries")

Label(app,text = "Depot:").pack()
depot = Entry(app)
depot.pack()

Label(app,text = "Description:").pack()
description = Entry(app)
description.pack()

Label(app,text = "Address:").pack()
address = Text(app)
address.pack()

Button(app,text = "Save",width = 10,command = write_to_file).pack()
app.mainloop()

 

以上是关于GUI输入数据并保存的主要内容,如果未能解决你的问题,请参考以下文章

如何将GUI中的数据保存到文本文件(java)

Matplotlib 的 GUI 不允许在保存框中输入?

#VSCode保存插件配置并使用 gist 管理代码片段

JAVA 在GUI中的文本框输入数据 保存到vector 对象中,在程序退出(按右上角的红叉)通过对象流把

用 Python 制作可视化 GUI 界面,一键提取图片当中的数据并保存至 Excel 当中

YASnippet - emacs 的代码片段管理工具