Re: Python trademark under attack -- the PSF needs your help

2013-02-15 Thread Quint Rankid
On Feb 14, 4:52 pm, Steven D'Aprano wrote: > You can also testify to the fact that when you read or hear of the > name "Python" in relation to computers and the Internet, you think of > Python the programming language. Has anyone considered a search of Amazon for Python, or more particularly sea

dict comprehension question.

2012-12-29 Thread Quint Rankid
Newbie question. I've googled a little and haven't found the answer. Given a list like: w = [1, 2, 3, 1, 2, 4, 4, 5, 6, 1] I would like to be able to do the following as a dict comprehension. a = {} for x in w: a[x] = a.get(x,0) + 1 results in a having the value: {1: 3, 2: 2, 3: 1, 4: 2, 5: 1