Python - Standard Library Usage
What will be the output of this code if the environment variable
USER is set to alice?
import os
name = os.getenv('USER', 'guest')
print(name)