CS001X – Homework 1
For this assignment, you were hired to develop a program in Python to calculate the monthly pay for the employees of a startup.
A couple of things to know:
1) Employees are paid by hours worked
2) Each employee is paid $30.00 per hour worked
Your program should ask the user to input the names of 3 employees, as well as how many hours they each have worked in a given month.
Then it must:
1) Display a ‘header’ for the output as follows: --------------------------------------------- (use repetition operator to create dashed line of size 40) Employee Payroll (use format function to align text at center of line size 40) ---------------------------------------------
2) After the header, your program should produce the names of the 3 employees listed (use the format function to create a column that is 30 characters long) followed by the amount each individual should receive that month.
1) Employee1 Name $2,400.00 Concatenate $ to value
2) Employee2 Name $600.00 Use the format function to add thousands separator
3) Employee3 Name $3,000.00 and display 2 decimal digits.
3) Lastly, your program should display the aggregate total of all payments, center aligned
Example input/output for the program
Enter first employee’s name: John Spring
Enter amount of hours worked for John Spring: 10
Enter second employee’s name: Anne Maureen
Enter amount of hours worked by Anne Maureen: 30
Enter third employee’s name: Virginia Malachias
Enter amount of hours worked by Virginia Malachias: 20
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme