Search Results

83
votes

Hidden features of Python

Readable regular expressions In Python you can split a regular expression over multiple lines, name your matches and insert comments. Example verbose syntax (from …
1
vote

What can you use Python generator functions for?

Basically avoiding call-back functions when iterating over input maintaining state. See here and …
1
vote

What is a “callable” in Python ?

__call__ makes any object be callable as a function. This example will output 8: class Adder(object): def __init__(self, val): self.val = val def __cal …
2
votes

What did you use to teach yourself python?

Lurk on the Usenet group for Python: Google groups. Lots of interesting topics and good explanations. An …
1
vote

Class method differences in Python: bound, unbound and static

The call to method_two will throw an exception for not accepting the self parameter the Python runtime will automatically pass it. If you want to create a static method in a Python class, d …
2
votes

Parse DICOM files in native Python

Some years ago I was looking for the same thing and found this: Python DICOM lib I wasn't too impressed w …
1
vote

Parse DICOM files in native Python

And as of today there's another pure Python package reading DICOM files available on Google code: pydicom Looks interesting. …
0
votes

Preferred Python unit-testing framework

There's always doctest if you want to keep your unit tests close to the code. HTH …
7
votes

What are good rules of thumb for python imports?

I would normally use import X on module level. If you only need a single object from a module, use from X import Y. Only use import X as Y in case yo …
7
votes

How can I unpack binary hex formatted data in Python?

In Python you use the struct module for this. >>> from struct import * >>> pack …
5
votes

Python Forums

On Usenet, the Python newsgroup is very active. You'll be able to find answers to many problems or get answers qu …
0
votes

Is there a free python debugger that has watchpoints?

Take a look at PyScripter. It has an integrated debugger, watch windows and much more. It's open source and is develope …
6
votes

What are some recommended, high quality, non-basic python books?

I can recommend "Dive into Python" from Mark Pilgrim. The book is free online. …