1 2 3 4 5 6 7 8 import tkinter as tk from tkinter import * root = tk.Tk() root.title("First App") #body of the GUI root.mainloop() ...
確定! 回上一頁