from tkinter import *
root = Tk()
root['bg'] = '#FFFAF3'
root.geometry('370x330')
executor = Entry(root, width=30, bg='White', bd=1, font='Arial 11')
name = Entry(root, width=30, bg='White', bd=1, font='Arial 11')
text = Text(root, width=50, height=20, font='Arial 11', bg='White', bd=1, wrap=NONE)
Label(root, text='Text', bg='#FFFAF3', font='Arial 11').place(x=10, y=10, width=100, height=20)
Label(root, text='Text', bg='#FFFAF3', font='Arial 11').place(x=10, y=40, width=100, height=20)
executor.place(x=120, y=10, width=240, height=20)
name.place(x=120, y=40, width=240, height=20)
text.place(x=10, y=70, width=350, height=250)
root.mainloop()
Надо, чтобы расстояние от правого нижнего угла Text до правого нижнего угла окна было 10 * 10 px при любом изменении размера окна.