“converter negativo em positivo em python” Respostas de código

converter negativo em positivo em python

>>> 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 e negativo em Python

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

Respostas semelhantes a “converter negativo em positivo em python”

Perguntas semelhantes a “converter negativo em positivo em python”

Mais respostas relacionadas para “converter negativo em positivo em python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código