I have this error: IndentationError: expected an indented block after 'if' statement on line 19! Did I make a mistake?

Question:

# Variables to represent the base hours and

# the overtime multiplier.

base_hours = 40

# Base hours per week

ot_multiplier = 1.5 # Overtime multiplier

# Get the hours worked and the hourly pay rate.

hours = float(input('Enter the number of hours worked: '))

pay_rate = float(input('Enter the hourly pay rate: '))

# Calculate and display the gross pay.

if hours > base_hours:

# Calculate the gross pay with overtime.

# First, get the number of overtime hours worked.

overtime_hours = hours - base_hours

# Calculate the amount of overtime pay.

overtime_pay = overtime_hours * pay_rate * ot_multiplier

# Calculate the gross pay.

gross_pay = base_hours * pay_rate + overtime_pay

else:

# Calculate the gross pay without overtime.

gross_pay = hours * pay_rate

# Display the gross pay.

print(f'The gross pay is ${gross_pay:,.2f}.')
Asked By: Braham Cadet

||

Answers:

in Python, everything inside of if and else statements statement must be indented. According to PEP 8, the indent should be 4 spaces.

so, your code should look like this:

if hours > base_hours:

    # Calculate the gross pay with overtime.

    # First, get the number of overtime hours worked.

    overtime_hours = hours - base_hours

    # Calculate the amount of overtime pay.

    overtime_pay = overtime_hours * pay_rate * ot_multiplier

    # Calculate the gross pay.

    gross_pay = base_hours * pay_rate + overtime_pay

else:

    # Calculate the gross pay without overtime.

    gross_pay = hours * pay_rate

# Display the gross pay.

print(f'The gross pay is ${gross_pay:,.2f}.')
Answered By: AudioBaton
Categories: questions Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.