bicycles = ['trek','cannondale','redline','specialized']
messages = f"My first bike was a {bicycles[0].title()}"
print(messages)
→My first bike was a Trek
motorcycles = ["honda","yamaha","suzuki","ducati"]
too_expensive = "ducati"
motorcycles.remove(too_expensive)
print(f"A {too_expensive.title()} is too expensive for me.")