python 溫度轉換程序
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.
存在許多問題,我們必須最后計算以碼為單位的距離,但最初,測量單位是以米為單位。 因此,對于此類問題,解決方案是將初始參數轉換為碼,然后對其執行運算,另一種選擇是在米中執行運算,然后將最終答案從米轉換為碼 。
So, here in this article, we are going to write a Python code for converting the meters into yards.
因此,在本文的此處,我們將編寫用于將儀表轉換為yards的Python代碼 。
Key: 1 meter = 1.094 yards
關鍵: 1米= 1.094碼
Example:
例:
Input:
Meters: 245
Output:
Yards: 268.03000000000003
Python code to convert Meters to yards
Python代碼將米轉換為碼
# 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
翻譯自: https://www.includehelp.com/python/program-to-convert-meters-into-yards.aspx
python 溫度轉換程序