“convertir negativo a positivo en pitón” Código de respuesta

convertir negativo a positivo en pitón

>>> n = -42
>>> -n       # if you know n is negative
42
>>> abs(n)   # for any n
42
>>> abs(-5.05)
5.05
NA RACE

número positivo y negativo en Python

num = float(input("Enter a number: "))
if num > 0:
   print("Positive number")
elif num == 0:
   print("Zero")
else:
   print("Negative number")
Mahesh barole

Respuestas similares a “convertir negativo a positivo en pitón”

Preguntas similares a “convertir negativo a positivo en pitón”

Más respuestas relacionadas con “convertir negativo a positivo en pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código