Buat label menggunakan tkinter dalam python

import tkinter as tk
window = tk.Tk()

firstLabel=tk.Label(window) #creates label and tells program where to load it
firstLabel.config(text="Label Statement: ") #alter the label to include text

firstLabel.pack() #loads the label to make it visible
window.mainloop()
skiibloc