lxml を使用して、次のような構造を持つ xml ファイルを読み取ります
<domain>http://www.trademe.co.nz</domain>
<start>http://www.trademe.co.nz/Browse/CategoryAttributeSearchResults.aspx?search=1&cid=5748&sidebar=1&rptpath=350-5748-4233-&132=FLAT&134=&153=&29=&122=0&122=0&59=0&59=0&178=0&178=0&sidebarSearch_keypresses=0&sidebarSearch_suggested=0</start>
私のpythonコードは次のとおりです。
from lxml import etree
tree = etree.parse('metaWeb.xml')
実行すると
entityref: expecting ';'
エラーが発生します
ただし、xmlファイルで&シンボルを削除すると、すべて問題ありません。
どうすればそのエラーを解決できますか?