5
os.getenvとos.environ.getの違い
両方のアプローチに違いはありますか? >>> 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 それらはまったく同じ機能を持っているようです。