# Programme asks what Nation is supported nation = input('Which nation do you support? France or the United Kingdom? ') # Response from entering either nation if nation == 'United Kingdom': print(f'The {nation} is the best nation.') elif nation == 'united kingdom': print(f'The {nation} is the best nation.') elif nation == 'France': print('You shall be banished to Davy Jones Locker.') elif nation == 'france': print('You shall be banished to Davy Jones Locker.') else: print('That Nation is not an option') print('Session terminated')