Skip to content

Instantly share code, notes, and snippets.

@matefs
Created October 2, 2023 19:27
Show Gist options
  • Save matefs/cd3b66719063dd899879343b2a05efdd to your computer and use it in GitHub Desktop.
Save matefs/cd3b66719063dd899879343b2a05efdd to your computer and use it in GitHub Desktop.
alerta-tela-python
import tkinter as tk
from tkinter import messagebox
# Cria uma janela tkinter (mas não a exibe)
janela = tk.Tk()
janela.withdraw() # Esconde a janela principal
# Mostra o alerta diretamente
messagebox.showinfo("Alerta", "Este é um alerta na tela!")
# Termina a execução do script
janela.destroy()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment