Edit File: print_env.py
import os for k, v in os.environ.items(): print("%s=%s" % (k,v))
Back to File Manager