comment here gulys
: '
This is a
multi line
comment
'
table { border-collapse: collapse; }
tr { border: none; }
td {
//border-right: solid 1px #f00;
border-left: solid 1px #f00;
}
In python, we can use comments to make our code easy to understand.
These lines are not executed.
# We use a hashtag for single line comments
'''
Using 3 quotation marks,
we
can
do
multiline
comments
'''
<!-- here is how to use comment in html -->