1
vote
After C++ - Python or Java?
You want a rapid development cycle so definitely choose Python over Java. I have never heard anyone describe Java as a rapid development language. I do, however, know plenty of ex Java developers w …
1
vote
What are your weakness points?
My greatest weakness is not being able to come up with a good answer to "What is your greatest weakness?".
It's a dumb cliche of a question, typically asked by weak interviewers. Respond wi …
3
votes
Javascript style dot notation for dictionary keys unpythonic?
This is a simpler version of your DictObj class:
class DictObj(object):
def __getattr__(self, attr):
return self.__dict__.get(attr)
>>> d = DictObj()
>>& …
