Skip to main content

Posts

Showing posts with the label #Write a Python program to enter length in centimeter and convert it into meter and kilometer.

ads1

Python basic, 6. Write a Python program to enter length in centimeter and convert it into meter and kilometer.

6. Write a Python program to enter length in centimeter and convert it into meter and kilometer. cm = int(input("Enter the Centimeter :-")) meter = cm/100.0 km = cm/100000.0 print("The length in the Meter :-",meter) print("The length in the km :-",km) Output :-   

ads2