#!/usr/bin/python3 # -*- coding: utf-8 -*- def ft_inch_to_cm(num_ft: float, num_inch: float) -> float: num_cm = ((num_ft * 12) + num_inch) * 2.54 return num_cm # Function returns walue as the result of evaluating # the expression containing a function print(ft_inch_to_cm(5, 6))