You have already completed these exercises!
Do you want to take them again?
You completed the Python Change Lists Exercises from W3Schools.com
Share on:
What will be the result of the following syntax:mylist = ['apple', 'banana', 'cherry']mylist[0] = 'kiwi'print(mylist[1])
mylist = ['apple', 'banana', 'cherry']mylist[0] = 'kiwi'print(mylist[1])