hey friends pls help me solve this program using loop inpute bs display hra hra is 10% of bs number of employees are 3
dont't u think there is a spelling mistake???????????????????????????????????????????????????
I'm afraid pal,it's hard to understand the problem,cld u put it in a better, simpler version?
here bs is basic salary which 10% of hra means house rent allowance given to 3 employees in company calculate this using loop
and hra is 10000
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
thanks jaskaran
but still need help anybody pls solve this using for loop
@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
Join our real-time social learning platform and learn together with your friends!