Learn Before
Concept
messagebox in Tkinter
messagebox is like a pop-up window that can be used to show user addition info or ask user a yes/no question. First we need to import the module:
from tkinter import messagebox
We then create a messagebox and call one of the built-in functions. We pass title text and message in the function.
messagebox.showinfo("Title", "Enter message here")
0
1
Updated 2021-08-17
Tags
Python Programming Language
Data Science