python comment multiple lines shortcut code example
Example 1: python comment multiple lines
'''
Technically you could also use triple single quotation
marks like so, but this formatting does not count
as "true" source code comments that are removed by
a Python parser.
'''
Example 2: comment multiple lines in python shortcut
Ctrl+/
For Both:
Ctrl+K+C
to comment
Ctrl+K+U
To uncomment
Example 3: spyder - comment banch of codee
Ctrl + 1
Ctrl + 4
Ctrl + 5
Example 4: big comments python
myvar = 5
"""
Big multiple lines comment
So many lines
WoW
"""