How to comment a single line? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to comment a single line?

27th Oct 2017, 5:26 PM
Dhiya Sann
Dhiya Sann - avatar
2 Answers
+ 3
In css, there's no single line comment format: you should use multiline /**/ comments even for a single or part of a line... However, any unexpected character at begin of a line will result to disable the rule(s) standing on the line, but just because of syntax error (and you cannot be sure if next lines/rules would be correctly interpreted ;P) Html also provide only one type of multiline comment <!-- --> Anyway, in some coding, string litteral can form pseudo single line comments, as enquoted values without assignement are not necessarly syntaxic errors: this is at least true for Javascript and Python ^^
28th Oct 2017, 7:17 AM
visph
visph - avatar
+ 1
or you can do this # Python
27th Oct 2017, 7:28 PM
Anthony Perez