Question: employees = [ ' Amie ' , 'Bato' , 'Cam', 'Dagon', 'Edmond', 'Ferris', 'Georgia' ] file = open ( monthlywinner . csv )

employees =['Amie', 'Bato' , 'Cam', 'Dagon', 'Edmond', 'Ferris', 'Georgia'] file = open ("monthlywinner.csv") # red the line of winner name line = file.readline().rstrip('
') # split on the comma winners = line.split(',') print ("Employee of the Month Report") print () print (f'{"Month":15s}Name') # report month name and winer name for index in range (12): print (f'{months[index]:15s}{winners[index]}') print() # get valid month and report the winner month = inpit ("Enter month (ex. Jan(: ") # TODO: use a data validation loop to ensure month is in months list
employees = [ ' Amie ' , 'Bato' , 'Cam', 'Dagon',

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!