How to increase the font size of a Text widget? How to increase the font size of a Text widget? tkinter tkinter

How to increase the font size of a Text widget?


There are several ways to specify a font: the simplest is a tuple of the form (family, size, style).

import Tkinter as tkroot=tk.Tk()text=tk.Text(width = 40, height=4, font=("Helvetica", 32))text.pack()    root.mainloop()