to test if values are all the same (a=b=c , as you would write in math 
class), you just need to test

if a==b and b==c:
    print "all three are the same value"
else:
   print "not all of them are of the same value"

-- 
http://groups.google.com/group/python_inside_maya

Reply via email to