Many widgets in my program are placed like so:
widget.place(relx=0.5, rely=0.5, anchor=CENTER)
So, I wanted to make this the default setup. I have tried:
root.option_add("*anchor", "center")#Putting CENTER returns an error
root.option_add("*relx", "0.5")
root.option_add("*rely", "0")
However, this does not work.
How could I achieve this?