I am writing a script that will take an input from a Tkinter GUI with 2 Entry widgets and a Text widget.
This is just part of my code:
root = Tk()
...
text = Text(root)
root.mainloop()
What I need is to get all the contents of the Text
widget.