What would I do here to get my code to go back an iteration?
list_ = [3,'yes',True]
for x in range(len(list_)):
print('What is the next item in the list?')
answer = input()
if answer = list_[x]:
print('Good job!')
else:
print('Nope! Try again.')
At that very last portion of the code (the 'else' statement) how would I get it to go over the same iteration of the for loop again so that the user can try again?