用python來做一個APP | pyt

  • 2020 年 1 月 10 日
  • 筆記

上程式碼
import tkinter as tk    class APP:      def __init__(self, master):          frame = tk.Frame(master)          frame.pack(side=tk.LEFT, padx=10, pady=10)            self.hi_there = tk.Button(frame, text="打招呼", bg="black", fg="white", command=self.say_hi)          self.hi_there.pack()        def say_hi(self):          print("互聯網的廣大朋友們大家好,我是閆晉文!")    root = tk.Tk()  app = APP(root)    root.mainloop()

運行後彈出

點擊打招呼按鈕後控制台輸出

互聯網的廣大朋友們大家好,我是閆晉文!

一個簡單的pythonGUI完成了