Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python

Idiom #355 Absolute value

Assign to y the absolute value of the number n

from math import fabs
y = fabs(n)
y = abs(n)
import "math"
y := math.Abs(x)

x and y have type float64

New implementation...
< >
programming-idioms.org