Home »
Python »
Python Programs
Python program to convert meters into yards
Meters to yards conversion: Here, we are going to learn how to convert meters into yards using python program?
By Anuj Singh Last updated : January 04, 2024
There are many problems where we have to calculate the distance in yards at the end but initially, the measurements are given in meters. So for such type of problems, the solution is converting the initial parameters into yards and then performing operations on it and another option is to perform operations in meters and then convert the final answer from meters to yards.
Problem statement
So, here in this article, we are going to write a Python code for converting the meters into yards.
Key: 1 meter = 1.094 yards
Example
Consider the below example with sample input and output:
Input:
Meters: 245
Output:
Yards: 268.03000000000003
Python program to convert meters into yards
# Python program to convert Centimeter to Inches
# taking input
num = float(input("Enter the distance measured in centimeter : "))
# converting from cms to inches
""" 1 inch = 2.54 centimeters"""
inc = num/2.54
# printing the result
print("Distance in inch : ", inc)
Output
First run:
Enter the distance measured in meters : 245
Distance in yards : 268.03000000000003
Second run:
Enter the distance measured in meters : 54
Distance in yards : 59.07600000000001
Third run:
Enter the distance measured in meters : 100
Distance in yards : 109.4
To understand the above program, you should have the basic knowledge of the following Python topics:
Python Basic Programs »