Environment variables

Oleg Broytmann phd at phd.russ.ru
Wed Mar 8 04:47:13 EST 2000


On Wed, 8 Mar 2000, Erik Christiansson wrote:
> write a short Python script that prints out all the env vars for me. I want

import os

for k, v in os.environ.items():
   print k, '=', v

Oleg.
---- 
    Oleg Broytmann      Foundation for Effective Policies      phd at phd.russ.ru
           Programmers don't die, they just GOSUB without RETURN.





More information about the Python-list mailing list