Answer:
def inch_to_feet (x):
return 1/x
Step-by-step explanation:
Implementating the program Using python 3 :
def - - - > function declaration keyword
inch_to_feet - - > function name
x - - > argument which the function takes
The value returned is a conversion of x which is in inches to feets
1/12 feet = 1 inch
To see the value returned ;
We can run the code :
def inch_to_feet(x):
return (1/12)*x
b = inch_to_feet(12)
print(b)
The code above will print 1.