from tkinter import *

root = Tk()
root.title("GUI Example by ajรติวัฒน์")
root.geometry("300x250")
root.option_add('*font', 'Comic Sans MS 14 bold italic')
root.mainloop()
