Question: 1 ) [ 4 0 points ] Reading List Each semester, professors provide students with a reading list of essential books to enhance their learning
points Reading List
Each semester, professors provide students with a reading list of essential books to enhance their learning and contribute to class discussions. Write a Python program named readings.py that prompts the user to enter three book titles. The program should then display the titles in the order they were entered, followed by the titles sorted in both ascending and descending alphabetical order.
Sample Run underlined text indicates data entered by user at runtime.
Course Reading List
Enter the first book's title: Head First Design Patterns
Enter the second book's title: Working Effectively With Legacy Code
Enter the third book's title: The Mythical Man Month
The inputted reading list
Head First Design Patterns', 'Working Effectively With Legacy
Code', 'The Mythical Man Month'
The reading list ordered ascendingly
Head First Design Patterns', 'The Mythical Man Month', 'Working Effectively With Legacy Code'
The reading list ordered descendingly
Working Effectively With Legacy Code', 'The Mythical Man Month', 'Head First Design Patterns'
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
