python_ref_list_insert.py:
x
 
fruits = ['apple', 'banana', 'cherry']
fruits.insert(1, "orange")
print(fruits)