You will code the following and submit it in one file. Use the information in the Content area for this week to assist you. Save it as a python file (.py), and upload it into the Assignments area. 1....

1 answer below »

You will code the following and submit it in one file. Use the information in the Content area for this week to assist you. Save it as a python file (.py), and upload it into the Assignments area.


1. Includecomment blockon line1 of your code with the following information:


""


"""


Your Name


Course Name, Section (example: ENTD200 B002 Spr18)


Instructor name


Week #


Date completed


"""



2.Create 2 Python programs based on week 5 flowcharts and requirements. You must use loops, do not use function call


Here is a SAMPLE run for a simple calculator to add to numbers (this is for reference only)


Simple Calculator


What is your name --> Supa


Enter first number --> 7


Enter second number --> 5


Supa, The total of 7.0 + 5.0 = 12.0


Do you want another calculation ? (y/n) y


What is your name --> Lupa


Enter first number --> 21


Enter second number --> 11


Lupa, The total of 21.0 + 11.0 = 32.0


Do you want another calculation ? (y/n) n


Thanks for using my calculator





Answered Same DayMar 13, 2021

Answer To: You will code the following and submit it in one file. Use the information in the Content area for...

Neha answered on Mar 13 2021
164 Votes
#Student Name:
#Course Name, Section
#Instructor Name
#Week 6
#Date: 13 March 2021
while(True):

name = input('Enter employee name: ')
hoursWorked = int(input('Enter hours worked by employee: '))
hourlyRate = int(input('Enter hourly rate for employee: '))
pay = hoursWorked *...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here