How to Comment Out a Block of Code in Python?
Problem Formulation Python has two ways to comment out a block of code: The hashtag symbol # tells the Python interpreter to ignore the rest of the line. To manually commenting out a block of code by inserting a hashtag symbol in front of every line is cumbersome. The multi-line string triple quotes ”’…”’ or … Read more