Answers for "python commenting multiple lines"

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
0

comment out multiple lines in python

# This is a "block comment" in Python, made
# out of several single-line comments.
# for this select the code and use shortcut Ctrl + /
Posted by: Guest on November-11-2021

Code answers related to "python commenting multiple lines"

Python Answers by Framework

Browse Popular Code Answers by Language