t= [3,5,6,7,10,14,17,21] Basically I want to print Test 1 when i is equal to an element of the list "t" and print Test 2 when i is not equal:
while i<=25: if i==t[]: print "Test1" else: print "Test2" What is missing here for this script work? Thank you all -- http://mail.python.org/mailman/listinfo/python-list