我使用这段代码:
from bs4 import BeautifulSoup
parser = BeautifulSoup(remote_data)
parse_data = parser.find_all('a')
for atag_data in parse_data:
URL_list = atag_data.get('href')
当我尝试将 URL_list 拆分为数组时:
array = str.split(URL_list)
我给这3个数组:
['index1.html']
['example.exe']
['document.doc']
但我只需要一个数组,例如:
['index1.html','example.exe','document.doc']
请问有什么建议吗?