[python] How to convert a negative number to positive?

How can I convert a negative number to positive in Python? (And keep a positive one.)

This question is related to python numbers absolute-value

The answer is


If "keep a positive one" means you want a positive number to stay positive, but also convert a negative number to positive, use abs():

>>> abs(-1)
1
>>> abs(1)
1

In [6]: x = -2
In [7]: x
Out[7]: -2

In [8]: abs(x)
Out[8]: 2

Actually abs will return the absolute value of any number. Absolute value is always a non-negative number.


If you are working with numpy you can use

import numpy as np
np.abs(-1.23)
>> 1.23

It will provide absolute values.


simply multiplying by -1 works in both ways ...

>>> -10 * -1
10
>>> 10 * -1
-10

The inbuilt function abs() would do the trick.

positivenum = abs(negativenum)