Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

hey friends pls help me solve this program using loop inpute bs display hra hra is 10% of bs number of employees are 3

OpenStudy (anonymous):

dont't u think there is a spelling mistake???????????????????????????????????????????????????

OpenStudy (anonymous):

I'm afraid pal,it's hard to understand the problem,cld u put it in a better, simpler version?

OpenStudy (anonymous):

here bs is basic salary which 10% of hra means house rent allowance given to 3 employees in company calculate this using loop

OpenStudy (anonymous):

and hra is 10000

OpenStudy (anonymous):

this might help def house_rent_allowance(): i=1 while i < 4: bs = input('Enter basic salary of employee: ') hra = (10*bs)/100 print 'The HRA of Employee',i,'is',hra i+=1

OpenStudy (anonymous):

thanks jaskaran

OpenStudy (anonymous):

but still need help anybody pls solve this using for loop

OpenStudy (anonymous):

@thangeram , it's still very easy , all you got to do is to make small change here:- def house_rent_allowance(): for i in range(1,4): bs = input('Enter the salary of the Employee: ') hra = (10*bs)/100 print 'The HRA of Employee',i,'is',hra i+=1

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!