The way to do the same thing as matlab in Python is to use numpy.
If your 1e9 numbers are in a numpy array, you can just write this:
x > 0
… to get an array of 1e9 booleans. Or, if you want to know if all of the numbers are positive:
np.all(x > 0)
This will be orders of magnitude faster than any Python loop over 1E9 values.
Sometimes, numpy isn't appropriate. But if you're trying to broadcast a simple function over a large collection, you should always ask "Can I do this in numpy?" before asking anything else.
The next step is to see if there's some other way to get the whole loop out of Python. Ideally, you do this by coding it in Cython instead of Python, or writing an explicit C extension module.
As an alternative to this, try other Python implementations. PyPy, IronPython, and Jython all run in virtual machines with a JIT, unlike CPython, and can often run much faster on this kind of code.
If you can't do that, you may at least be able to get the looping part out of Python—there's still (at minimum) 1E9 Python function calls, so it's not going to be an order of magnitude faster, but it could be, say, 3x faster. For example, using map instead of an explicit for loop can make a big difference. Or, if you've got a whole chain of operations, use itetools functions when possible, generator expressions when not, to avoid building intermediate lists and collapse all of the for loops into one.
The next step is speeding up the function calls. Store any looked-up values in local variables, use functools.partial instead of lambdas (or even, sometimes, direct expressions), etc.
Finally, if you get to the point where you've got Python code you just can't get rid of, and you still need another 2%, then you can look at things like alternate ways to write equivalent Python expressions. And you don't do that by guessing, or asking on the internet, but by using timeit to test on your target platform.