Как сохранить ввод из текстового поля в Python

# use the get() function but with some additional attributes.
# If we have a text box textbox_input, then you can return its input using this line:

test_input = textbox_input.get("1.0",END)

# The first part, "1.0" means that the input should be read from line one, 
# character zero (ie: the very first character). END is an imported constant 
# which is set to the string "end". The END part means to read until the end of the text box 
# is reached.
Mappy Show