1 Star 1 Fork 0

taoza/html-css

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
texteditor.py 377 Bytes
Copy Edit Raw Blame History
taoza authored 2025-03-14 05:29 +08:00 . python Text Editor
import tkinter as tk
from tkinter import filedialog
def saveas():
global text
t=text.get("1.0", "end-1c")
savelocation=filedialog.asksaveasfilename()
file1=open(savelocation,"w+")
file1.write(t)
file1.close()
root=tk.Tk("Text Editor")
text=tk.Text(root)
text.grid()
botton=tk.Button(root,text="Save",command=saveas)
botton.grid()
root.mainloop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/itbj00/html-css.git
git@gitee.com:itbj00/html-css.git
itbj00
html-css
html-css
master

Search