What I'm having trouble now is this. Since the original code is too long to write here, I skipped every announcements and the elif,else term of reply1,2,3. I want to see the program going back to the line5:print(choice_2) when I typed the wrong inputs in line6:reply2 = input(). But the program keep returns me print(choice_1) How can I solve this? Any help will be greatly appreciated.
while True:
        print(choice_1)
        reply1 = input()
        if reply1 in pos:
                print(choice_2)
                reply2 = input()
                if reply2 in pos():
                        print(choice_3)
                        reply3 = input()
                        if reply3 in pos:
                                print('Nice choice.')
                        if reply1 and reply2 and reply2 in whole:
                                break                       
        else:
                print('Wrong input. Please type again.\n')
 
     
    