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