inches to cm code example
Example 1: inch to cm
1 inch = 2.54 cm
Example 2: inch to cm
1 cm = 0.39370079 inch
1 inch = 2.54 cm
Example 3: cm to inch
1 cm = 0.3937 inch
Example 4: cm to foot
# 1 cm = 0.0328084 foot
# Divide the cm value by 30.48
def cm_to_foot(cm):
return cm/30.48
print(cm_to_foot(1)) # Result- 0.0328084
Example 5: cm to inches
const cm = 1;
console.log(`cm:${cm} = in:${cmToIn(cm)}`);
function cmToIn(cm){
var in = cm/2.54;
return in;
}