在Python中,可以使用tkinter模塊中的Button組件創建按鈕,并通過設置其屬性來更改按鈕的大小。以下是一個示例代碼:
import tkinter as tk
root = tk.Tk()
# 創建一個按鈕
button = tk.Button(root, text="Click me")
# 設置按鈕的大小
button.config(width=10, height=2)
# 顯示按鈕
button.pack()
root.mainloop()
在上面的代碼中,使用button.config(width=10, height=2)
來設置按鈕的寬度和高度。可以根據需要調整這兩個值來更改按鈕的大小。