1. 程式人生 > >用python來做一個APP | python GUI 基礎(實戰)

用python來做一個APP | python GUI 基礎(實戰)

上程式碼
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完成了