摘要:
https://pythonguides.com/category/python-tutorials/python-tkinter/ from tkinter import * from tkinter.filedialog import asksaveasfile from tkinter imp 阅读全文
摘要:
from tkinter import * ws = Tk() ws.title("Python Guides") ws.geometry("200x200") name_variable = StringVar() password_var = StringVar() def submit(): 阅读全文
摘要:
https://pythonguides.com/python-tkinter-save-text-to-file/ from tkinter import * from tkinter.ttk import * ws = Tk() ws.title("Python Guides") ws.geom 阅读全文
摘要:
https://tkdocs.com/tutorial/firstexample.html Code 1 from tkinter import * 2 from tkinter import ttk 3 4 5 def calculate(*args): 6 try: 7 value = floa 阅读全文