
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Python program to convert inches into cm using functions
Typology: Exercises
1 / 1
This page cannot be seen from the preview
Don't miss anything!

Python program to convert inches into cm using functions : Code :
def inch_to_cm(): inch = int(input("Enter inches : ")) cm = inch * 2. print(f"{inch} inches = {cm} cm ") inch_to_cm() Output :