The code below returns none. How can I fix it? I\'m using Python 2.6.
none
import urllib URL = \"http://download.finance.yahoo.com/d/quotes.csv?s=%s&
Your method doesn't explicitly return anything, so it returns None
return
returns
None