Answers for "how to make a python program to convert inch into cm"

0

how to make a python program to convert inch into cm

a= int(input("type the inch that you wanna see cm form ofn ---->"))
# this answer is from sampanna bhattarai
def func1(inch):
  # this answer is from sampanna bhattarai
          return inch * 2.54
  # this answer is from sampanna bhattarai
c = func1(a)
# this answer is from sampanna bhattarai
print(c)
# this answer is from sampanna bhattarai
Posted by: Guest on February-16-2022

Code answers related to "how to make a python program to convert inch into cm"

Python Answers by Framework

Browse Popular Code Answers by Language