4 lines
135 B
Python
4 lines
135 B
Python
bicycles = ['trek', 'cannondale', 'redline', 'specialized']
|
|
message = f"My first bicycle was a {bicycles[0].title()}."
|
|
|
|
print(message)
|