Python program to convert centimeters into millimeters
Following program shows you how to convert centimeters to millimeters.
In this program we get centimeters from user once we get those we need to multiply with 10 so that we get in millimeters
centimeters = int(input("Please enter centimeters:"))
millimeters = centimeters * 10
print(millimeters, " Millimeters")
Output:
Please enter centimeters: 20
200 Millimeters