我正在關注一本名爲「Python編程」的着名Python書,並且已經將這本書跟在了這封信上,直到在編程的中間我想測試我的標籤,所以我試了一下。代碼運行良好,但標籤沒有出現。請幫幫我。代碼在下面。tkinter標籤沒有顯示
import sys
import os
from tkinter import *
class Safe(Frame):
""" PS """
def __init__(self, master):
""" Initalize the frame """
super(Application, self).__init__(master)
self.grid()
self.create_widgets()
def create_widgets(self):
""" Create button , text, and entry widgets """
# Create instuction label
self.inst_label = Label(self, text = "Welcome")
self.inst_label.grid(row = 0, column = 0, columnspan = 2, sticky = W)
#main
root = Tk()
root.title("Password Safe")
root.geometry("500x400")
root.mainloop()
感謝,看起來好多了 – iLoveApples
任何人都可以回答我 – iLoveApples
你永遠不會創建一個'安全'的實例。 –