Python - List Multiple
================
fruit = [“banana”, “apple”, “quince”]
print(fruit)
fruit[0] = “pear”
fruit[-1] = “orange”