Creating EPL GUI button
Use the below code to make a basic GUI button.
def helloCallBack(): print("Hello World") B = tkinter.Button(top, text ="Hello", command = helloCallBack) B.pack()