Coming from C++, //
is used from single line comments, and /* */
is used for multi line comments.
I know //
in Python is used for floor division, but I'm curious if /* */
is used for anything in Python?
I'm also curious if there is any way to add multi line comments in Python?