Quantcast
Channel: friedchickenandgazoline - Latest entries
Viewing all articles
Browse latest Browse all 15

C++ Comment Trick - In Python!

$
0
0

Ever heard of what i like to call the C++ Comment Trick ? (It actually works in any language that supports the C++ syntax of line and block comments, but that's not the point).
It's a neat little trick, very handy when you're trying stuff out and find yourself having to repeatedly switch between a copple of code blocks.

When i first heard of it, at first i thought "Oh, Neat!", because i like geeky tricky tricks like this. But then i thought "Onoes! God damn python doesn't support this comment syntax, so i can't use it !".

Well, for some weird reason i thought about it again last night and since i was bored and didn't want to sleep, i figured i'd waste some time and come up with a python equivalent.

It's actually quite simple to emulate the /* */ block comment syntax by using triple-quoted, multiline strings (that's basically what happens when you're writing docstrings). The trick is to enclose your two blocks of code in triple quotes preceded by a regular # python comment character, and then add another three quotes (but without the # character this time) between each block, like so:


# '''
some_working_code()
'''
test_stuff()
# '''

See what happens ? The first three quotes are ignored, since they're commented out, and so the first block is left alone, while the second one is treated as a string just sitting there. But if you simply delete the first #:


'''
some_working_code()
'''
test_stuff()
# '''

Now the first block is treated as a string while the second one is left alone (and the last line doesn't start another multiline string since it's commented out).

The syntax is even clearer than the C++ like version, and it's easier to figure out what's happening than with the fun but hard to remember mess of slashes and stars used in the above link.

Now obviously, and just like the original version, this kind of crap shouldn't be left in production code. It's confusing (most people reading it will probably just go FTW) and leaving dead code in is rarely a good idea. (Luckily, if you're using pylint to check your code, the bugger WILL yell at you if you leave this in, detecting the multiline string as a useless statement. Maybe pep8 does this too, but i don't use it, so i don't know).

But I think it's a nice thing to know when working or debugging some code (you know, "I don't care if it's ugly and messy, i'll clean it up when the damn thing works!"). It shouldn't be abused (DONT use it to swicth between 3 pages blocks!), and is only useful in certain, not so frequent situations, but when it does make sense it's a very nice time saver (also, situations in which it comes handy tend to be quite frustrating to begin with, and if you ever coded anything, you know how even a 2 seconds time gain can keep you from banging your head against the wall sometimes.)

As a quick side note, although i keep calling this the C++ trick, i think it's actually way more useful in interpreted languages like javascript or now python, since you only have to save your file and rerun the program/refresh the browser for the switch to take effect. In a non-trivial program, having to recompile the whole thing will probably negate most of the time gain. But hey, it's still time better spent than fighting with your editor (I'm discovering SublimeText by the way. It's awesome!).

Also, conclusions are still for pussies.


Viewing all articles
Browse latest Browse all 15

Trending Articles