hello,

thank you for your help

i wrote this:

x="nam1"
y="F"

names = [("nam1", "F", "Y"), ("nam2", "M", "N")]
l = len(names)
for i in range(0,l):
        print names[i][0]
        print names[i][1]
        if x == names[i][0] and y == names[i][1]:
                message = "right"
        else:
                message = "wrong"
        
print message


normally it must tell me "right" but it tells me "wrong"

best
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to