Shortcut to comment out multiple lines with Python Tools for Visual Studio
To make the comment of a block, it is a sequence of keys: Ctrl-K + Ctrl+C and to un-comment Ctrl-K + Ctrl-U.
Here are some other very useful keys for Python:
CTRL+K then CTRL+C adds the #
in VS for selected lines.
CTRL+K then CTRL+U removes the #
in VS for selected lines.
On python the only way is """ ... """
, practically just a string.