Conditional Test>>> cars = 'bmw'Can be interpreted as: 'Set the value of the cars 'bmw' ' >>> cars == 'bmw'True>>> cars == 'audi'FalseCan be interpreted as: 'Is the value of the cars 'bmw'?' True. 'Is the value of the cars 'audi'?' False. Case sensitivity is important. For exmaple:>>> car = 'Audi'>>> car == 'audi'FalseHowever,>>> car = 'Audi'>>> car.lower() == 'audi'True Checking for inequality..