Category Archives

NZEC error in Python

While coding in various competitive sites, many people must have have encountered NZEC error. NZEC (non zero exit code)...

NZEC error in Python

While coding in various competitive sites, many people must have have encountered NZEC error. NZEC (non zero exit code)...

Built-in Exceptions in Python

All instances in Python must be instances of a class that derives from BaseException. Two exception classes that are...

Built-in Exceptions in Python

All instances in Python must be instances of a class that derives from BaseException. Two exception classes that are...

Garbage Collection in Python

Python’s memory allocation and deallocation method is automatic. The user does not have to preallocate or deallocate memory similar...

Garbage Collection in Python

Python’s memory allocation and deallocation method is automatic. The user does not have to preallocate or deallocate memory similar...

reflection in Python

Reflection refers to the ability for code to be able to examine attributes about objects that might be passed...

reflection in Python

Reflection refers to the ability for code to be able to examine attributes about objects that might be passed...

Destructors in Python

Destructors are called when an object gets destroyed. In Python, destructors are not needed as much needed in C++...

Destructors in Python

Destructors are called when an object gets destroyed. In Python, destructors are not needed as much needed in C++...