Please provide answer in python code to attatched coding problem.
Extracted text: Define a function print_total_inches, with parameters num_feet and num_inches, that prints the total number of inches. Note: There are 12 inches in a foot. Sample output with inputs: 58 Total inches: 68 2 ' Your solution goes here 3 4 feet - int(input()) 5 inches = int(input()) 6 print_total_inches(feet, inches)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here