diff --git a/1-Programming-for-Everybody-Getting-Started-with-Python/Assignment/Assignment_2.3.txt b/1-Programming-for-Everybody-Getting-Started-with-Python/Assignment/Assignment_2.3.txt index 5f0977a..20e97a9 100644 --- a/1-Programming-for-Everybody-Getting-Started-with-Python/Assignment/Assignment_2.3.txt +++ b/1-Programming-for-Everybody-Getting-Started-with-Python/Assignment/Assignment_2.3.txt @@ -1,4 +1,7 @@ -#"""2.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.""" +#"""2.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.""" def computepay(h,r): @@ -17,4 +20,4 @@ try: p = computepay(hour,rate) print (p) except: - print ("Please,input your numberic") \ No newline at end of file + print ("Please,input your numberic")