Home »
Python »
Django MCQs
How you can turn off the debugging in Django's configuration file?
19. How you can turn off the debugging in Django's configuration file?
- DEBUG = false
- DEBUG = FALSE
- DEBUG = False
- DEBUGOFF = True
Answer: C) DEBUG = False
Explanation:
You can turn off the debugging by writing DEBUG = False in Django's configuration file.