#!/usr/bin/env python


from Tkinter import *

root = Tk()

root.option_add( "*font", "lucida 14 bold italic" )

button = Button(root, text="Quit", command=root.quit)

button.pack()

root.mainloop()