print('''Choice your number
[1] Banana
[2] Apple ''')
while True:
    option = int(input('Your option: '))
    if option == 1:
        print('Banana choiced')
        break
    elif option == 2:
        print('Apple choiced')
        break
    print('Try again')
    
#https://pt.stackoverflow.com/q/257201/101