5
Diferença entre os.getenv e os.environ.get
Existe alguma diferença entre as duas abordagens? >>> os.getenv('TERM') 'xterm' >>> os.environ.get('TERM') 'xterm' >>> os.getenv('FOOBAR', "not found") == "not found" True >>> os.environ.get('FOOBAR', "not found") == "not found" True Eles parecem ter exatamente a mesma funcionalidade.