Answers for "python comment multiple lines shortcut"

2

comment multiple lines in python shortcut

Ctrl+/
For Both:
Ctrl+K+C 
to comment
Ctrl+K+U
To uncomment
Posted by: Guest on May-18-2021
2

spyder - comment banch of codee

# Single line comment
Ctrl + 1

# Multi-line comment select the lines to be commented
Ctrl + 4

# Unblock Multi-line comment
Ctrl + 5
Posted by: Guest on July-02-2020
2

big comments python

# One line Comment
myvar = 5 # Can also start after any chunk of code

"""
Big multiple lines comment
So many lines
WoW
"""
Posted by: Guest on September-16-2020

Code answers related to "python comment multiple lines shortcut"

Python Answers by Framework

Browse Popular Code Answers by Language