This is my code to make a tkinter msgbox:
import tkinter.messagebox # just imported tkinter.messagebox - right???
def warning():
tkinter.messagebox.showwarning("Warning", "A Warning-box!") # simply
warning() # executes warning()
All right - this is my code. When I am running the Programm there is this result:
The normal tkinter window is also imported. Any ideas? Thanks in advance!