Set the position of radio button and entry in same column but the result was not allign Set the position of radio button and entry in same column but the result was not allign tkinter tkinter

Set the position of radio button and entry in same column but the result was not allign


You need to draw location_ent inside the same container widget self.radioframe that holds the radiobuttons. This means you need to change:

location_ent =Entry(root)

to:

location_ent =Entry(self.radioframe).

Demo

If you perform the modification above, you will get what you expect:

enter image description here