Lists Exercises

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