Post

@Python_Dv A ['apple', 'banana'] because when you use the indexing you always start at zero, so apple is zero, banana is one, cherry is two, etc.
However: in Python the last number is what it goes to but stops at, so the :3 stops at banana.
English

@Python_Dv Array starts at 0 so it would print value 0,1 and 2.
So the answer is C
English











