The function print_feet_inch_short(), with parameters num_feet and num_inches, that prints using ' and " shorthand. End with a newline is as follows:
def print_feet_inch_short(num_feet, num_inches):
print(str(num_feet) + " ' ", str(num_inches)+"\"")
print_feet_inch_short(5, 6)
The code is written in python.
learn more on python here: https://brainly.com/question/24551910