Reference no: EM132174907
Using python, write a program able to:
a = [ "Euclid", "Archimedes", "Newton","Descartes", "Fermat", "Turing", "Euler", "Einstein", "Boole", "Fibonacci", "Nash"]
1. Display the longest name.
2. Display the shortest name.
3. Display a string that consists of the first letter from each of 11 names in the list a.
4. Display a string that consists of the last letter from each of 11 names in the list a.
5. Ask the user for a letter. Display the number of times the letter appears in the list.
6. Sort list a i.e. the first name in the list should be Archimedes; last name is Turing.
7. As you process the array make sure you are using a while , for etc loop.