Python Forum
Python for Everybody 3.1 assignment
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python for Everybody 3.1 assignment
#16
Hello all

I see that a working codehas already been posted but I'm trying to resist just copying somebody else's work. However, I'm getting a headache staring at this now!
I'm a total beginner, admittedly but it's frustrating me that I'm getting stumped so early on in this course.
With the below code, I'm not getting any errors, it's a perfectly good, working code.
The issue is that I should be able to input:
Hours 45 (sth)
Rate 10.50 (str)
...and come out with an answer of 498.75
My code is coming up with 551.25 !

I'm sure it's something really simply that I'm overlooking because I've been staring for too long but can anyone spot it?

sth = input("Enter hours: ")
str = input("Enter rate: ")
flh = float(sth)
flr = float(str)
if flh > 40 :
    reg = flr * flh
    ot = (flh - 40.0) * (flr * 1.5)
    pay = reg + ot
else:
    pay = flh * flr
print (pay)
Reply


Messages In This Thread
RE: Python for Everybody 3.1 assignment - by Mr_W - Jan-06-2019, 06:24 PM
RE: Python for Everybody 3.1 assignment - by Mr_W - Jan-07-2019, 12:12 PM
RE: Python for Everybody 3.1 assignment - by Incubroz - Apr-27-2020, 05:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python for Everybody 5.2 assignment baba04201 20 173,474 Jul-25-2023, 04:15 PM
Last Post: MicaelSchutz
  Coursera python for everybody 5.2 assignment SteppentigerV2 11 12,908 Oct-22-2020, 11:57 AM
Last Post: Larz60+
  [split] Python for Everybody 5.2 assignment ramadan2099 3 12,082 Jul-15-2020, 04:54 PM
Last Post: Bipasha
  Python Assignment 3 - Applied Data Science - 2.3 eyavuz21 8 4,985 Jun-06-2020, 08:59 AM
Last Post: eyavuz21
  Python Password Saver Assignment sshellzr21 2 6,202 May-02-2020, 01:34 AM
Last Post: sshellzr21
  Python for Everybody 3.3 assignment ramadan2099 7 31,785 Apr-08-2020, 06:49 AM
Last Post: DeaD_EyE
  Python for everyone course assignment 5.2 ofekx 3 8,559 Dec-23-2019, 08:41 PM
Last Post: nilamo
  [split] Python for Everybody 5.2 assignment jonchanzw 4 8,492 Oct-22-2019, 08:08 AM
Last Post: perfringo
  Python Assignment 5.2 amos76823 3 15,985 Jan-17-2019, 07:34 AM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020