We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c705b commit ed744bfCopy full SHA for ed744bf
Week 4
Week4_Assignment2_3.py
@@ -0,0 +1,9 @@
1
+'''Write a program to prompt the user for hours and rate per hour using input to compute gross pay.'''
2
+
3
+hr = float(input('Enter Hours: '))
4
+r = float(input('Enter rate per hour: '))
5
6
+#compute gross pay
7
+gross_pay = hr*r
8
+print('Pay: ',gross_pay)
9
0 commit comments