Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Write a python program to convert a U.S. Customary System length in miles, yards, feet, and inches to a Metric System length in kilometers, meters,

Write a python program to convert a U.S. Customary System length in miles, yards, feet, and inches to a Metric System length in kilometers, meters, and centimeters. A sample run is shown in Fig. 2.39. After the numbers of miles, yards, feet, and inches are entered, the length should be converted entirely to inches and then divided by 39.37 to obtain the value in meters. The int function should be used to break the total number of meters into a whole number of kilometers and meters. The number of centimeters should be displayed to one decimal place.

The needed formulas are as follows:

total inches = 63,360 * miles + 36 * yards + 12 * feet + inches

total meters = total inches/39.37

kilometers = int(meters/1000)

write a python program

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions