Q. Which symbol is used for single-line comments in Python?
β
Correct Answer: (B)
#
Explanation: Python uses `#` for single-line comments. Unlike C/C++, `//` or `/* */` are not valid in Python.