print_environment.py 185 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 #!/usr/bin/env python from __future__ import print_function import os sorted_environment = sorted(os.environ.items()) for name,value in sorted_environment: print(name,'=',value)