In languages like PHP we can do the following:
>>> echo "cat is"." not"." dead"
cat is not dead
>>> echo "cat is"/*." not"*/." dead"
cat is dead
What I have done on the second line is, commenting out a chunk of it using PHP's multi-line comment feature.
Please let me know how to do the same in Python without breaking the line of code into separate lines.
Thanks..!