# let's print bmw in upper case and the other cars in the list as title case
= ['honda', 'toyota', 'volksvogen', 'ferrari', 'bmw', 'benz']
cars
for car in cars:
if car == 'bmw':
print(car.upper())
else:
print(car.title())
Honda
Toyota
Volksvogen
Ferrari
BMW
Benz