import tkinter as tk app = tk.Tk() app.title('Label with font') label = tk.Label(app, text='Some text with larger letters') label.pack() ...
確定! 回上一頁