Result Size:
625 x 571
demo_ref_keyword_del3.py:
x = ["apple", "banana", "cherry"] del x[0] print(x)
x
x
=
[
"apple"
,
"banana"
,
"cherry"
]
del
x
[
0
]
print
(
x
)
C:\Users\My Name>python demo_keyword_del3.py
['banana', 'cherry']