I have getting confused in getting the value from the Tkinter() Entry Field. I have this kind of code...
from Tkinter import* def valueGET(val1, val2):
you need brackets in the print command in your function
def valueGET(val1, val2): print val1 + " " + val2