Create a text entry box

    txt_entry_box1 = Entry(root, width=10)
    txt_entry_box1.place(x=400, y=5)

Get the value of an entry box

#Make it global
    global txt_entry_box1

    my_string = txt_entry_box1.get()