Código PHP:
from Tkinter import *
import tkMessageBox
root = Tk()
frame = Frame(root)
frame.pack()
def funcion():
tkMessageBox.showinfo("Resultado:", res)
label = Label(frame, text="Este numero:")
entry =(Entry(frame))
labell = Label(frame, text="Por este:")
entryy =(Entry(frame))
res = (entry and entryy)
button = Button(frame, text="Calcularle", command=funcion)
label.pack()
entry.pack()
labell.pack()
entryy.pack()
button.pack()
root.mainloop()
De antemano les agradesco.