Django - Deployment and Production
Consider this snippet in
If the environment variable
settings.py:import os
DEBUG = os.getenv('DEBUG', 'False').lower() == 'true'
print(DEBUG)If the environment variable
DEBUG is set to 'TRUE' (uppercase), what will be the output?