Posts by KARPSS • 51 points
3 posts
-
1
votes1
answer35
viewsQ: How to invert a shape in Tkinter
Hi, I wanted to find out how to invert inside the canvas (Tkinter) a Poligono. from Tkinter import * Tela_principal = Tk() Tela_principal.geometry('300x300+10+300') area_2 = Frame(bg='snow',…
-
0
votes1
answer146
viewsQ: Convert . py files to . exe files
Hello, can anyone explain me how to convert an application in . py to . exe format and run in windows? I tried to use cx_freeze but could not. Is there any way to create a converter? Thanks.
-
4
votes2
answers207
viewsQ: Use of multiple keys in Tkinter
Okay, I edited the question, this is the most simplified example, I wish that while the '6' key is being pressed, even using the '8' key, it continues to interact with the program, while '8' only…