Robotics & Artificial Intelligence

In Python programming, a comment is denoted by:

  1. #
  2. //
  3. /*
  4. ~

Getting Started

3 Likes

Answer

#

Reason — A comment in Python is denoted by the # symbol. Any text written after # on a line is ignored by the Python interpreter and is used to explain the code or make it more readable.

Answered By

1 Like


Related Questions