Posts by ca10v3ndram • 7 points
2 posts
-
-1
votes3
answers258
viewsA: Tkinter: Tk() not found
Try it like this: # importa o módulo tkinter como tk import tkinter as tk # cria a janela principal root = tk.Tk() # cria um label lbl = tk.Label(root, text="teste") # mostra o label lbl.pack() #…
-
0
votes1
answer77
viewsQ: Even if you get it right, the message doesn’t change!
I’m trying to create a game in Tkinter, it’s simple thing, you kick a number and then a message appears if your kick is right or wrong. I already did this in CLI, however, I went to try to make a…