Is there a way to do the following preprocessor directives in Python?
#if DEBUG
< do some code >
#else
< do some other code >
#endif
|
|
Is there a way to do the following preprocessor directives in Python?
|
||
|
|
|
|
There's
|
||||||||
|
|
|
I'd pass in a command line argument for debugging. Read the command and it's arguments by readind sys.argv in Python. The first element in the list will be the name of the script. |
||
|
|
|
|
You can use the preprocessor in Python. Just run your scripts through the cpp (C-Preprocessor) in your bin directory. However I've done this with Lua and the benefits of easy interpretation have outweighed the more complex compilation IMHO. |
||
|
|
|
You can just use the normal language constructs:
|
||
|
|
|
|
I suspect you're gonna hate this answer. The way you do that in Python is
Since python is an interpreter, there's no preprocessing step to be applied, and no particular advantage to having a special syntax. |
||||||||
|