Result Size:
625 x 571
demo_ref_list_insert.py:
fruits = ['apple', 'banana', 'cherry'] fruits.insert(1, "orange") print(fruits)
x
fruits
=
[
'apple'
,
'banana'
,
'cherry'
]
fruits
.
insert
(
1
,
"orange"
)
print
(
fruits
)
C:\Users\My Name>python demo_list_insert.py
['apple', 'orange', 'banana', 'cherry']