Flask - Deployment
What will this code print if the environment variable
DEBUG_MODE is set to the string 'False' (note: string, not boolean)?import os
debug = os.getenv('DEBUG_MODE', 'True')
print(debug == True)