Implementing #define macros similar to C on python

JL lightaiyee at gmail.com
Thu Nov 14 21:29:48 EST 2013


One of my favorite tools in C/C++ language is the preprocessor macros.

One example is switching certain print messages for debugging use only

#ifdef DEBUG_ENABLE
DEBUG_PRINT   print
#else
DEBUG_PRINT

Is it possible to implement something similar in python? Thank you.



More information about the Python-list mailing list