これは、
x = 0 if x < 0 x = x_max if x > x_max
次のように書くこともできるのか。
x = [0, x].max x = [x, x_max].min
追記:次のようにも書ける。
x < 0 and x = 0 x > x_max and x = x_max