Jul-08-2019, 01:47 PM
You don't show code that we cant test and what's gameplay_A[i], gameplay_B[i]?
You probably should not loop like this gameplay_A
Just to make something similar that run.
You probably should not loop like this gameplay_A
[i]
.Just to make something similar that run.
>>> gameplay_A = ['Question:_1', 'Question:_2'] ... lst = [] ... for i,item in enumerate(gameplay_A): ... answer = input(gameplay_A[i] + "\n") ... lst.append(answer) Question:_1 i don't know Question:_2 hello world >>> lst ["i don't know", "hello world"]If gameplay_B[i] list contains the same it's True.
>>> gameplay_B = ["i don't know", "hello world"] >>> lst == gameplay_B True