0
votes
World’s First Computer Programming _Language_ ??
The language the analytical engine would have used was its own machine code, entered via punch cards indicating the operation to be performed and the columns (effectively registers) to perform it t …
1
vote
Python module functions used in unexpected ways
One function I've come to appreciate is string.translate. Its very fast at what it does, and useful anywhere you want to alter or remove characters in a string. I've just used it in a seemingly in …
3
votes
from X import a versus import X; X.a
There are uses for both cases, so I don't think this is an either-or issue.
I'd consider using from module import x,y,z when:
There are a fairly small number of things …
2
votes
Replacing multiple occurrences in nested arrays
If you want to leave the original untouched, and just return a new dictionary with the modifications applied, you can use:
replacements = {'example' : 'someotherword'}
newdict = di …
2
votes
4
votes
What is your favorite python decorator?
I like the new capability to use a property as a decorator in python2.6 and later.
You could always use it to define a getter for read-only properties:
@property
def fullname(self): …
