5
Différence entre os.getenv et os.environ.get
Y a-t-il une différence entre les deux approches? >>> 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 Ils semblent avoir exactement la même fonctionnalité.