Posts by Mikalayla • 21 points
3 posts
-
2
votes1
answer835
viewsQ: Python 3: Tkinter - Background image does not exist, "pyimage1" doesn’t exist
My code to display a background image: from tkinter import * def entrar(): #Janela Principal janela = Tk() janela.title("Salvadados") janela.geometry('400x600') #fotofundo back = Label(janela)…
-
0
votes1
answer1528
viewsQ: Python 3 Tkinter: How to get a value/string from a Radiobutton inside a function?
I would like to take selected sex value and print in the Datatargets window, but it doesn’t work, not even the other data typed as name or age. I have here a main window where will display two…
-
0
votes1
answer425
viewsQ: How to delete items in an array? (Python 3)
I need to build a program where the user will be able to delete events from the event schedule, but the problem here is that when he deletes another event,I mean, after he has deleted the first one…