""" File: paycheck.py Author: Schafer Description: Asks the users for hour worked (might include decimals) Asks the users for their hourly wage Calculates and prints the value of the paycheck """ hours_str = input("How many hours did you work? ") hours_num = float(hours_str) wage_str = input("What is the hourly wage? ") wage_num = float(wage_str) paycheck_amount_num = hours_num * wage_num paycheck_amount_str = str(paycheck_amount_num) print("This employee should be paid $" + paycheck_amount_str)