Diferencia entre os.getenv y os.environ.get

¿Hay alguna diferencia entre ambos enfoques? >>> 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 Parecen tener exactamente la...