# How to get the first item in a list in python 3 bikes = ['trek', 'redline', 'giant'] first_bike = bikes[0] print(first_bike) # Output - # trek