You have already completed these exercises!
Do you want to take them again?
You completed the Python Arrays Exercises from W3Schools.com
Share on:
Python Lists can be used as arrays.What will be the result of the following code:fruits = ['apple', 'banana', 'cherry']print(fruits[0])
fruits = ['apple', 'banana', 'cherry']print(fruits[0])