Let's say I have the below list:
o =[[-0.90405713, -0.86583093, -0.14048125]]
How do I find out how positive each element of o[0]
is?
So,by looking at this I know that -0.14048125
is the most "positive" with respect to 0
on the number line. Is there a way to do this via a python code?