import tkinter
window = Tk()
# ------------------------ #
my_entry = Entry(width=15, font("Arial", 20, "bold") # You can't increase the
# height like width, but you can do it by increasing size of
# of the font. Note: it will increase size of the symbols too.
# ------------------------ #
window.mainloop()