First on your own, then compare with your neighbor the following python coding tasks:
- Create a python list of the following items and print out every element on it's own line
- Your favorite fruits
- Your favorite numbers
- Make a list named myScores that can hold 9 elements
- Display the number of elements in myScores
- Insert scores into myScores
- Print out just the first element in myScores
- Change the first element to 100 in myScores
- Add a new element to myScores that has a value of 99.9
- Display the odd indexed elements in myScores
- Display the elements with values in myScores that are less than 50.0