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