Solution using functions without passing arguments
Solution using functions and by passing arguments
Solution : Without using function
Program/Source Code
Python program to convert total inches to feet and inches
inh=int(input("Enter total inches ")) f=inh//12 inh=inh%12 print(f," feet ",inh," inches")