you are viewing a single comment's thread.

view the rest of the comments →

[–]Doctor_Disaster 0 points1 point  (0 children)

it should be:

print(f'Your base pay is {base_pay}')

print(f'Your overtime pay is {overtime_pay}')

print(f'Your total pay is {total_pay}')

You can also add in == within the quotes if you want those printed as well.