Salaryconditional
Salaryconditional
Write a python program to input the basic salary of an employee and calculate
its Gross salary according to the following:
(DA or dearness allowance is calculated as a specific percentage of the basic
salary
which is then added to the basic salary along with other components like HRA (House
Rent Allowance)
to make up the total salary of an employee of the government sector.)
HRA = (20/100)*Basic_Salary
DA = (80/100)*Basic_Salary
HRA = (25/100)*Basic_Salary
DA = (90/100)*Basic_Salary
HRA = (30/100)*Basic_Salary
DA = (95/100)*Basic_Salary