On Sun, 20 Jan 2013 17:14:36 -0800, iMath wrote: [...] > so there is no REAL private variable in Python but conversion exists in > it that python programmer should follow and recognize .right ?
There are no "REAL private variables" in most languages. Consider the C++ trick "#define private public". Or pointer tricks, or using reflection in Java. Yes, the convention in Python is that names starting with a single underscore should be considered private implementation details. -- Steven -- http://mail.python.org/mailman/listinfo/python-list