I know that I can use the following to get a listing of the environment of
my own system.   How can I do similar for another system on my network.
This is for administrative purposes.

>>> import os
>>> for param in os.environ.keys():
    print(param, os.environ[param])

--Bill
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to