# Working with lists
# Create a list with two values
fruitbowl = ["pear", "apple"]
# Print the first value
print(fruitbowl[0])
# Print the second value
print(fruitbowl[1])
# Add a value to thelist
fruitbowl.append('strawberry')
# Print this new value
print(fruitbowl[2])
# Print the whole list
print(fruitbowl)
# Delete the second value
del fruitbowl[2]
# You can also delete the value by name
fruitbowl.remove('apple')
# Print the list again
print(fruitbowl)
# You can also delete a range of items
# Delete items 1 and 2 
del fruitbowl[0:2]