thislist = ["apple", "banana", "cherry"]
I. write a code to change the third element in the list
II. Change the values "banana" and "cherry" with the values "blackcurrant"
and "watermelon":
Answers
Answered by
0
thislist = ["apple", "banana", "cherry"]
thislist[1] = "blackcurrant"
thislist[2] = "watermelon"
print(thislist)
Similar questions