There are two ways to make comments in Python.
1.
# single line comment
2.
“”"
multiple line comments
here
“”"
There are two ways to make comments in Python.
1.
# single line comment
2.
“”"
multiple line comments
here
“”"
In html, if you want to make a comment, then use
<!–
your comment which will not affect the code
–>

How to comment in django template file
Ignore everything between {% comment %} and {% endcomment %}