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
It sounds like you are looking for tkinter.Text, which allows you to adjust both the height and width of the widget. Below is a simple script to demonstrate:
from tkinter import Text, Tk
r = Tk()
r.geometry("400x400")
t = Text(r, height=20, width=40)
t.pack()
r.mainloop()