Answers for "shortcut to comment out 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
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 out multiple lines in python"

Python Answers by Framework

Browse Popular Code Answers by Language