在我的代码中.text在第3行正常工作但是给出了
最后一行的AttributeError:'list'对象没有属性'text'`
错误。两者都相同,但可能是什么问题?
for elem6 in doc.findall('.//medicationsInfo/entryInfo'):
drugcodeSystem.append(elem6.find('productCode/codeSystem'))
drugname.append(elem6.find('productCode/displayName').text)
routecode.append(elem6.find('routeCode/code'))
routecodeSystem.append(elem6.find('routeCode/codeSystem'))
drugname1.append(elem6.find('productCode/codeSystemName').text)