I’m reading about proofs, currently reading Mathematics for Computer Science by Eric Lehman and Tom Leighton, they illustrate in a sample proposition that "as z ranges over the real numbers, e^z takes on every positive, real value at least once". I'm having trouble fully grasping this proposition.
I am trying to approach this is as a programmer and think of what it would look like in pseudocode if I were to see if it was true.
pr = [ N naught ]
r  = [ all real numbers ]
for y in pr:
    for z in r:
        e = pow(y, z)
        if e != y:
            goto outer
    
        print "this is true";
    outer
Is this what they are proposing?
 
     
     
     
    