i want to download data in  multiprocess ,i know the threading structure,but i can't finish it,<br>would you mind to revise it ?<br>any advice appreciated.<br>[code]<br>import urllib<br>import threading<br>URL = "http://download.finance.yahoo.com/d/quotes.csv?s=%s&f=sl1t1v&e=.csv"<br>symbols = ('GGP', 'JPM', 'AIG', 'AMZN','GGP', 'JPM', 'AIG', 'AMZN')<br>url =[ URL % '+'.join(sym)  for sym in symbols]<br><br>num=rang(3)  <br><br>def  down(url):<br>    print urllib.urlopen(url).read()<br>  <br>  <br>for i in num:   #these code  i can't finish <br>    t=threading.Thread(target=down,args=  )<br>    threads.append(t)<br>  <br>  <br>for i in nmu:<br>    threads[i].start()<br>  <br><br>for i in num:<br>     threads[i].join()<br><br>[/code]<br>