ok looks like many did not understand the question. i will make it more clear.
i got a list:
List_1 = [1,2,3,4,5,6,7,8,9]
and what i do in my program is that if i press 1 that will make List_1[0] into X or what ever number i press, it turns it into an X. my list has 9 numbers total.
What i want to do, is that IF 3 specific numbers are converted into X then the program will move on.
so if i end up with:
List_1 = [1,'X',3,4,'X',6,'X',8,9]
then the program will move on.