I\'m making a simple app just to practice python in which I want to write text as if it were Notepad. However, I can\'t make my entry bigger. I\'m using tkinter for this. Do
You can change the height of the entry widget. To do so you can write:
entry_box.place(height=40, width=100)
Change the value according to your needs! IT WORKS !