Monday, June 15, 2020

chapter 5 week 7 Assignment 5.2

5.2 Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number. Enter 7, 2, bob, 10, and 4 and match the output below.

Answer:



chapter 5 week 7 quiz

chapter 5 week 7 quiz

chapter 5 week 7 quiz

Quiz

1 / 10
  1. What is wrong with this Python loop:
    n = 5
    while n > 0 :
    print(n)
    print('All done')
    1.   This loop will run forever
    2.   The print('All done') statement should be indented four spaces
    3.   There should be no colon on the while statement
    4.   while is not a Python reserved word

chapter 4 week 6 Assignment 4.6

4.6 Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay should be the normal rate for hours up to 40 and time-and-a-half for the hourly rate for all hours worked above 40 hours. Put the logic to do the computation of pay in a function called computepay() and use the function to do the computation. The function should return a value. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75). You should use input to read a string and float() to convert the string to a number. Do not worry about error checking the user input unless you want to - you can assume the user types numbers properly. Do not name your variable sum or use the sum() function.

Answer:


chapter 4 week 6 quiz

chapter 4 week 6 quiz

chapter 4 week 6 quiz

Quiz

 

chapter 5 week 7 Assignment 5.2

5.2  Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entere...