- 2
Como podemos convertir el float en enteros? Por favor alguien que me explique.
Float, Python
2 Antworten
0
x = float(input())
y = float(2 + 4)
# float() converts the expression inside the brackets to a float, if it is possible
+ 1
float(2)
Float, Python