python/clase_1/ejercicios/9_float.py
2026-06-03 21:38:45 -03:00

5 lines
121 B
Python

numero= int(input("ingrese un numero"))
print(f"el numero ingresado es {float(numero):.3f}")
print(type(float(numero)))