I recently wrote a rather ugly looking one-liner, and was wondering if it is better python style to break it up into multiple lines, or leave it as a commented one-liner. I looked in PEP 8, but it did not mention anything about this
This is the code I wrote:
def getlink(url):
return(urllib.urlopen(url).readlines()[425].split('"')[7])
# Fetch the page at "url", read the 426th line, split it along
# quotes, and return the 8th quote delimited section
But would something like this be better style?:
def getlink(url):
url_file = urllib.urlopen(url)
url_data = url_file.readlines()
line = url_data[425]
line = line.split('"')
return line[7]
Or perhaps something in between?
getlink = lambda url: urllib2.urlopen(url).readlines()[425].split('"'). This of course assumes that no exceptions are generated; if that is a case you want to handle within the function, the broken-up form is better, since you can add appropriatetrycatchfinallyblocks. – Chinmay Kanchi Aug 23 '11 at 8:28