Python: Assume the input data is structured as follows: first there is a non-neg
ID: 3568870 • Letter: P
Question
Python: Assume the input data is structured as follows: first there is a non-negative integer specifying the number of employee timesheets to be read in. This is followed by data for each of the employees. The first number for each employee is an integer that specifies their pay per hour in cents. Following this are 5 integers, the number of hours they worked on each of the days of the workweek. Given this data, write a loop and any necessary code that reads the data and stores the total payroll of all employees into the variable total . Note that you will have to add up the numbers worked by each employee and multiply that by that particular employee's pay rate to get the employee's pay for the week-- and sum those values into total
Explanation / Answer
t = int(raw_input())
total = 0;
for i in range(1,t+1):
l = map(int,raw_input().split(' '))
ans = (sum(l) - l[0])*l[0]
print 'emnployee ', i,' earn total cents ',ans
total += ans
print total,' is the total'
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.