I see others do this but have no clue how they did. As title, if I want to add # in front of multiple line of code so that these code wont run, like this
print A
print B
print C
Then I want them become
# print A
# print B
# print C
What is the fastest way?