Python: Convert in feet to inches, yards, and miles
Feet to Other Units
Write a Python program to convert the distance (in feet) to inches, yards, and miles.
Unit Equivalents | Conversion Factors (longer to shorter units of measurement) |
Conversion Factors (shorter to longer units of measurement) |
---|---|---|
1 foot = 12 inches | 12 inches _______ 1 foot |
1 foot _______ 12 inches |
1 yard = 3 feet | 3 feet _______ 1 yard |
1 yard _______ 3 feet |
1 mile = 5,280 feet | 5,280 feet ________ 1 mile |
1 mile ________ 5,280 feet |
Pictorial Presentation:
Sample Solution:
>
# Prompt the user to input a distance in feet and
Python Code :
Sample Output:
Input distance in feet: 100 The distance in inches is 1200 inches. The distance in yards is 33.33 yards. The distance in miles is 0.02 miles.
For more Practice: Solve these Related Problems:
- Write a Python program to convert a given distance in miles to kilometers, meters, and centimeters.
- Write a Python program to convert inches into feet, yards, and meters.
- Write a Python program to take user input in yards and convert it into feet, inches, and meters.
- Write a Python program to convert a given distance in meters to miles, yards, and feet.
Python Code Editor:
Previous: Write a Python program to calculate the hypotenuse of a right angled triangle.
Next: Write a Python program to convert all units of time into seconds.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.