I tried
textEntry = Entry(root, width=115, textvariable=text, height=12)
but I got an error invloving the height.
Then I tried using the Text widget:
textEntry = Text(root, width=115, textvariable=text, height=12)
but I got an error involving textvariable=text
Any way I could adjust the height of the Entry or the variable of the Text?