how to make a alert box in python
import pyautogui
print(pyautogui.alert("Hi grepper user"))
how to make a alert box in python
import pyautogui
print(pyautogui.alert("Hi grepper user"))
python tkinter messagebox
import tkinter
from tkinter import messagebox
# hide main window
root = tkinter.Tk()
# message box display
messagebox.showerror("Error", "Error message")
messagebox.showwarning("Warning","Warning message")
messagebox.showinfo("Information","Informative message")
tkinter info box
from tkinter import messagebox
messagebox.showinfo('Title', 'Information')
list in tkinter messagebox
from tkinter import *
from tkinter import messagebox
def listMessageBox(arr):
window=Tk()
listbox=Listbox(window)
listbox.pack(fill=BOTH, expand=1) #adds listbox to window
[listbox.insert(END, row) for row in arr] #one line for loop
window.mainloop()
arr=['a','b','c','1','2','3']
listMessageBox(arr)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us