Answers for "shortcut to comment multiple lines in python"

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
4

python comment multiple lines

#This is a comment
#And another one
print("Hello !)  #Comment in the same line
      
"""
A multiline
comment
"""
print("Hello !)
Posted by: Guest on February-13-2021

Code answers related to "shortcut to comment multiple lines in python"

Python Answers by Framework

Browse Popular Code Answers by Language