1
vote
So in ‘good’ Python do you have to type every space individually?
Just because Python should use tabs doesn't mean it has to. I use tabs in all of my files, and I've had no problems. That said, any good text editor indents for you, as mentioned a dozen t …
2
votes
What is the easiest, most concise way to make selected attributes in an instance be readonly?
There is no real way to do this. There are ways to make it more 'difficult', but there's no concept of completely hidden, inaccessible class attributes.
If the person using your class can't …
1
vote
Hidden features of Python
The first-classness of everything ('everything is an object'), and the mayhem this can cause.
>>> x = 5
>>> y = 10
>>>
>>> def sq(x):
... retu …
6
votes
How do I efficiently filter computed values within a Python list comprehension?
result = [x for x in map(expensive,mylist) if x]
map() will return a list of the values of each object in mylist passed to expensive(). Then you can list-comprehend that, …
4
votes
Beginner wondering if his code is ‘Pythonic’
A few comments:
I would replace range() with xrange(); when you call range(), it allocates the entire range all at once, whereas when you iterat …
1
vote
Should you always favor xrange() over range()?
xrange() is more efficient because instead of generating a list of objects, it just generates one object at a time. Instead of 100 integers, and all of their overhead, and the list to …
2
votes
Presentations on switching from Perl to Python
Eric S. Raymond wrote an interesting article/essay on his experience with Python, which were hugely favorable.
On writi …
2
votes
Reading 32bit Packed Binary Data On 64bit System
Explicitly specify that your data types (e.g. integers) are 32-bit. Otherwise if you have two integers next to each other when you read them they will be read as one 64-bit integer.
When yo …
0
votes
How can I closely achieve ?: from C++/C# in Python?
It's never a bad thing to write readable, expressive code.
if otherString:
stringValue = otherString
else:
stringValue = defaultString
This type of code is l …
2
votes
I’m using Python regexes in a criminally inefficient manner
Creating a templating language is all well and good, but shouldn't one of the goals of the templating language be easy readability and efficient parsing? The example you gave seems to be neither. …
1
vote
Why did you start using Python?
Because I hated programming, but had to program. Python had always sounded distasteful because of its whitespace issue, and because of some bad company (zope and yum, to name a few) that gave me a …
2
votes
Check to see if python script is running
Drop a pidfile somewhere (e.g. /tmp). Then you can check to see if the process is running by checking to see if the PID in the file exists. Don't forget to delete the file when you shut down cleanl …
