Is there a way to overlay a widget on top of others, without altering the order of the code?
from tkinter import Tk
from tkinter import Listbox
from tkinter import Label
ventana = Tk()
label = Label(ventana)
label.config(text="Test")
label.place(x=50,y=50)
list = Listbox(ventana)
list.config(width=50,height=30)
list.place(x=30,y=30)
ventana.mainloop()