What does the last line mean in the following code?
import pickle, urllib
join() is a string method, that works on a separator in new string
>>> ':'.join(['ab', 'cd']) >>> 'ab:cd'
and list comprehension is not necessary there, generator would suffice