Allegra, a sales manager, is looking at five résumés and try…

Allegra, a sales manager, is looking at five résumés and trying to decide whom she will hire as the newest salesperson on her staff. The new salesperson will manage several complicated and demanding accounts. For this reason, Allegra wants to hire someone who is dedicated to being a consultative problem solver. Which of the following five candidates should she hire?

Upload your solution as a .py file. Write a Python program (…

Upload your solution as a .py file. Write a Python program (no need to write any function) that creates a named tuple defined as follows:  The name of the variable holding the named tuple object is Song, the name of the named tuple is also Song The name of the fields inside the named tuple are (in order) the names in the column headers of the table below You will then create one object of that named tuple data type per row of the following table title artist duration track Take my hand L. Skywalker 2.59 5 Lil short for a stormtrooper L.A. Skywalker 3.22 3 Mesa Senator J.J. Binks 1.56 9 You will then display the information about each of these objects on the screen.   Sample Program Execution (no user input):  Song(title=’Take my hand’, artist=’L. Skywalker’, duration=2.59, track=5)Song(title=’Lil short for a stormtrooper’, artist=’L.A. Skywalker’, duration=3.22, track=3)Song(title=’Mesa Senator’, artist=’J.J. Binks’, duration=1.56, track=9) Grading Rubric 1 point for defining the named tuple 1.5 points for creating the three named tuples objects 1.5 points for displaying the three named tuples as illustrated above