Home »
Python »
Django MCQs
Except Django comment tag, what can be used to write smaller comments?
25. Except Django comment tag, what can be used to write smaller comments?
- # ..
- /* … *
- {{# ... #}}
- {# ... #}
Answer: D) {# ... #}
Explanation:
The {# ... #} tag can also be used to write smaller comments. Below is the syntax –
{# ... #}
Example:
<h1>Welcome {# Comment can be written here#}</h1>