Is there any way to comment multiple lines at Python(Not using IDE's CTRL+... command)? I mean the way of C/C++/Java does it /** ... */
I have seen some developers have been using below example for this purpose.
'''
here goes the comment!
more comments..
'''
But this seemed to me the Perl's begin/cut like commenting, which was designed for one purpose, but people can use that as milti line commenting.
=begin
here goes the comment
=cut
If there is no other way, then Will it be safe if I use triple quotes for the commenting? Does it have any pitfalls?