Posts by GhostCode • 13 points
1 post
-
1
votes1
answer608
viewsQ: Button does not call function correctly
from tkinter import * class Application: def __init__(self, master=None): self.inicio = Frame(master) self.inicio.pack() self.msg = Label(self.inicio, text="Deseja exprimentar a versao input?")…