“Absolutwert Python” Code-Antworten

JS Absolutwert

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

Absolutwert Python


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

Jealous Jellyfish

Absolutwert 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##

Ähnliche Antworten wie “Absolutwert Python”

Fragen ähnlich wie “Absolutwert Python”

Weitere verwandte Antworten zu “Absolutwert Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen