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()
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.