我有这个代码来从页面中检索信息:
def between_strings(source, start='<a href="http://site.com/', end='class'):
words = []
while True:
start_index = source.find(start)
if start_index == -1:
break
end_index = source.find(end)
words.append(source[start_index+len(start):end_index])
source = source[end_index+len(end):]
return words
stat = between_strings(page)
我想从页面中获取所有的值,但是这段代码只返回了第一个。