Why i can't move the Frame with pady but with padx i can??
frame = Frame(window)
frame.pack(side=LEFT,pady=15)
lista_spese = Listbox(frame)
lista_spese.configure(font=("Ink Free",20), width=28, height=8, bg="#4a4a4a", fg="#dedede",relief="solid",borderwidth=4)
etichetta_lista_spese = Label(window,text="Lista delle spese",bg="#64d981",font=("Ink Free",19),relief="solid",borderwidth=1)
etichetta_lista_spese.place(relx=0.02, rely=0.27)
scrollbar = Scrollbar(frame,command=lista_spese.yview)
scrollbar.pack(side=RIGHT,fill=Y)
lista_spese.config(yscrollcommand=scrollbar.set)
scrollbar2 = Scrollbar(frame,command=lista_spese.xview,orient="horizontal")
scrollbar2.pack(side=BOTTOM,fill=X)
lista_spese.config(xscrollcommand=scrollbar2.set)
lista_spese.pack()