Home »
Python »
Python programs
Python program to convert yards into meters
Yards to meters conversion: Here, we are going to learn how to convert yards into meters using python program?
Submitted by Anuj Singh, on July 11, 2019
There are many problems where we have to calculate the distance in meters at the end but initially, the measurements are given in yards. So for such type of problems, the solution is converting the initial parameters into meters and then performing operations on it and another option is to perform operations in yards and then convert the final answer from yards to meters.
So, here in this article, we are going to write a code for converting the yards into meters.
Key: 1 meter = 1.094 yards
Example:
Input:
Yards: 54
Output:
Meters: 49.36014625228519
Python code to convert Yards to meters
# Python program to convert yards into meters
# input
num = float(input("Enter the distance measured in yards : "))
# converting from yards into meters
""" 1 meter = 1.094 yards"""
met = num/1.094
# printing the result
print("Distance in meters : ", met)
Output
First run:
Enter the distance measured in yards : 54
Distance in meters : 49.36014625228519
Second run:
Enter the distance measured in yards : 1.094
Distance in meters : 1.0
Third run:
Enter the distance measured in yards : 245
Distance in meters : 223.9488117001828
TOP Interview Coding Problems/Challenges