Here goes an newbie question on python.
From the following function
def singlereader(url, linkGlue):
d = feedparser.parse(url)
tmp = []
for item in d.entries:
tmp.append(item.linkGlue) # line 5
return tmp
how would i use the variable value as the object name for "item" In line 5, i want to use the value of "linkGlue" variable.