This is what I have tried for a simple inches to meters conversion:
inch = float(input(\'how many inches? \')) meter = inch * 0.0254 print(meter)