[str(wi) for wi in wordids]
is a list comprehension.
a = [str(wi) for wi in wordids]
is the same as
a = []
for wi in wordids:
a.append(str(wi))
So
createkey='_'.join(sorted([str(wi) for wi in wordids]))
creates a list of strings from each item in wordids, then sorts that list and joins it into a big string using _ as a separator.
As agf rightly noted, you can also use a generator expression, which looks just like a list comprehension but with parentheses instead of brackets. This avoids construction of a list if you don't need it later (except for iterating over it). And if you already have parentheses there like in this case with sorted(...) you can simply remove the brackets.
However, in this special case you won't be getting a performance benefit (in fact, it'll be about 10 % slower; I timed it) because sorted() will need to build a list anyway, but it looks a bit nicer:
createkey='_'.join(sorted(str(wi) for wi in wordids))
normalizedscores = dict([(u,float(l)/maxscore) for (u,l) in linkscores.items()])
iterates through the items of the dictionary linkscores, where each item is a key/value pair. It creates a list of key/l/maxscore tuples and then turns that list back into a dictionary.
However, since Python 2.7, you could also use dict comprehensions:
normalizedscores = {u:float(l)/maxscore for (u,l) in linkscores.items()}
Here's some timing data:
Python 3.2.2
>>> import timeit
>>> timeit.timeit(stmt="a = '_'.join(sorted([str(x) for x in n]))", setup="import random; n = [random.randint(0,1000) for i in range(100)]")
61.37724242267409
>>> timeit.timeit(stmt="a = '_'.join(sorted(str(x) for x in n))", setup="import random; n = [random.randint(0,1000) for i in range(100)]")
66.01814811313774
Python 2.7.2
>>> import timeit
>>> timeit.timeit(stmt="a = '_'.join(sorted([str(x) for x in n]))", setup="import random; n = [random.randint(0,1000) for i in range(100)]")
58.01728623923137
>>> timeit.timeit(stmt="a = '_'.join(sorted(str(x) for x in n))", setup="import random; n = [random.randint(0,1000) for i in range(100)]")
60.58927580777687
float(l)I suppose... – eumiro Oct 14 '11 at 14:11sortedanddictfunctions will ask for one value at a time, which the generator expression will give, instead of storing them all in a temporary list. – agf Oct 14 '11 at 15:01