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