Answers for "big comments python"

5

python big comment

# one hashtag for a single line comment

"""
3 quote marks is technically
a docstring, but it works as
a multi line comment
"""

##pressing 'Alt 3' in IDLE comments out
##what you are selecting
and 'Alt 4' to uncomment

if False:
  print('Hello') # yes you can do it at the end of a line
  you can technically put if False around code you dont want it to run,
  but that would mean it has to have correct syntax,
  and would not be good for readability.
Posted by: Guest on July-08-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
0

comment all selected lines in python

Select relevant lines to be commented, then use ctrl+/
Posted by: Guest on June-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language