# Favourite football team excercisefavourite_team = input('What is your favourite football team?').lower()if favourite_team == 'leicester city' or favourite_team == 'leicester':print('They are the best team in the world!')elif favourite_team == 'liverpool':print('They are by far worst team in the world!')else:print('Not best choice of theam there. Thanks for taking part')