#!/usr/bin/python

import tkinter
from tkinter import *
import tkinter.messagebox

top = tkinter.Tk()
# Code to add widgets will go here...
B = tkinter.Button(top, text ="Hello", command = lambda: print('Hello'))
B.pack()
top.mainloop()

