小弟爬蟲新手
正在用google的geocode做爬蟲練習
以下是部分原始碼
<GeocodeResponse>
<status>OK</status>
<result>
<type>establishment</type>
<type>point_of_interest</type>
<type>university</type>
已知用bsobj.find("result").find("type")是第一個type
請問要如何用find或是next_sibling去爬第二個和第三個type?
ps:試過用next_sibling()
dataType = bsobj.find("result").find("type")
dataType2 = dataType.next_sibling()
return dataType2
系統給我
TypeError: 'NavigableString' object is not callable