Creating Static Methods in Python

This is a short introductory guide to creating static methods. Static methods, though not used entirely that often, can be a very useful tool. I personally get the most use out of them when organizing my code.
Python’s static methods have a similar implementation as Java & C++. Static methods were not introduced into Python until [...]

Does a Function Like isset() Exist in Python?

The answer is no.
One way to see if a variable exists in the namespace is by catching exceptions when trying to access the variable. Here is an example:

try:
if foo:
# variable is set, do something
pass
except NameError:
[...]

Android Maybe Slow To Market, But This Is Only The Beginning.

While checking out Tech Crunch this morning, came across an interesting article, which I just so happen to disagree with. The article was titled T-Mobile Is Dreaming Of Android Riches. And It Might Have To Keep Dreaming. Naturally, like most articles on Tech Crunch, the piece was well written and though out, but I believe [...]