Python
Python
print("hello world")
2)Write a program that uses input to prompt a user for their name and then welcomes them. Note
that input will pop up a dialog box. Enter Sarah in the pop-up box when you are prompted so your
output will match the desired output.
print('Hello',name)
3)Write a program to prompt the user for hours and rate per hour using input to compute gross
pay. Use 35 hours and a rate of 2.75 per hour to test the program (the pay should be 96.25). You
should use input to read a string and float() to convert the string to a number. Do not worry about
error checking or bad user data.
total=float(hrs)*float(rate)
print(total)
4)Write a program to prompt the user for hours and rate per hour using input to compute gross
pay. Pay the hourly rate for the hours up to 40 and 1.5 times the hourly rate for all hours worked
above 40 hours. 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 - assume the user types numbers properly.
h=float(hrs)
rate=input("Enter rate")
r=float(rate)
if h<=40:
print (h*r)
else:
score=float(score)
if score>=0.9 :
print('A')
elif score>=0.8 :
print('B')
elif score>=0.7 :
print('C')
elif score>=0.6 :
print('D')
elif score<0.6 :
print('F')
else :
print('out of range')
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.
hours=float(inp)
rate= float(inp)
def computepay(h,r):
if (h>40) :
pay = (40*r)+(h-40)*1.5*r
else:
pay = (h*r)
return pay
print (computepay(hours,rate))
7) 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.
largest = None
smallest = None
while True:
try:
if num == "done":
break
if largest is None:
largest = int(num)
largest = int(num)
if smallest is None:
smallest = int(num)
smallest = int(num)
except: