“valor absoluto python” Código de respuesta

JS Valor absoluto

Math.abs(-4)//returns 4
Math.abs(4)//returns 4
If-dev

valor absoluto python


def max_absolute_value(int1,int2):
    return max(abs(int1), abs(int2))

Jealous Jellyfish

valor absoluto python

#find the absolute or modulous of the  number
a=int(input('enter number'))
if a>0:
    print('The absolute value of',a,'is',a)
else:
    print('The absolute value of',a,'is',-a)
#output:
#case I
enter number4
The absolute value of 4 is 4
#case II
enter number-4
The absolute value of -4 is 4
Gr@Y_orphan_ViLL@in##

Respuestas similares a “valor absoluto python”

Preguntas similares a “valor absoluto python”

Más respuestas relacionadas con “valor absoluto python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código