Python Program to Convert Inches to Centimeters
Generally 1 inch = 2.540 centimeters. It is comes under unit conversions. In this program we converting the inches to centimeters.
Input:
1
Output:
2.540
Explanation:
1 inch = 2.540 centimeters then the answer will be 2.540
Code:
inches=int(input())
print(inches*2.540)
Note:
Hello Guys, Don't Stop Learning keep Going..............