3 examples of 'shortcut to comment multiple lines in python' in Python

Every line of 'shortcut to comment multiple lines in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
152def comment(s):
153 out = str()
154 for line in s.splitlines():
155 out += '% ' + line + '\n'
156 return out
387def comment(self, text):
388 return " /* {} */ ".format(text)
610def change(line: str) -> str:
611 return line[1:] if line.startswith("#") else line

Related snippets