Test a list

Ana Dionísio anadionisio257 at gmail.com
Wed Mar 20 14:15:27 EDT 2013


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



More information about the Python-list mailing list