What are the consequences when omitting the parent master of a widget? Those two programs do not produce a visual difference:
import tkinter as t
import tkinter.ttk as ttk
w = t.Tk()
w.title("Label 1")
label_1 = ttk.Label(text="Label")
label_1.grid(row=0, column=0)
fenster.mainloop()
vs.
import tkinter as t
import tkinter.ttk as ttk
w = t.Tk()
w.title("Label 1")
label_1 = ttk.Label(w, text="Label")
label_1.grid(row=0, column=0)
fenster.mainloop()