Thursday, April 23, 2020

Simple Payroll Program in Python


Write and design a payroll program that will ask the user how many days an employee work in the company and then, the salary rate per day. In addition, the program also will ask the user the SSS, Pag-IBIG, BIR, and PHILHEALTH contributions. The payroll program will compute the gross salary, total deductions, and net salary and display the result on the screen.


I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, IT projects, school and application development, programming projects, thesis, and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tSIMPLE PAYROLL PROGRAM");
print()
days = float(input('\tHow Many Days Work : '));
rate = float(input('\tRate Per Day       : '));
# Solving Gross Salary Here
solve_gross = (days * rate);
print();
print("\tGross Salary            : PHP  {:8.2f} " .format(solve_gross));
print();
sss = float(input('\tSSS Contribution               : PHP  '));
pag_ibig = float(input('\tPAG-IBIG Contribution          : PHP '));
bir = float(input('\tBIR Contribution               : PHP  '));
philhealth= float(input('\tPHILHEALTH Contribution        : PHP '));
# Solving Total Deductions and Net Salary Here *
total_deductions = (sss + pag_ibig + bir + philhealth);
solve_net_salary = (solve_gross - total_deductions);
print();
print("\tDisplay Payroll Results");
print();
print("\tGross Salary     : PHP  {:2.2f}.".format(solve_gross));
print("\tTotal Deductions : PHP  {:2.2f}.".format(total_deductions));
print();
print("\t==============================================");
print();
print("\tNet Salary       : PHP  {:2.2f}.".format(solve_net_salary));
print();
print("\tEND OF PROGRAM");

No comments:

Post a Comment