Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
327 views
in Technique[技术] by (71.8m points)

python - lxml find element by name, but use variable in search

I have a problem with the find function in lXML. But i think this is more a generic question how to tell that i want to check against the value, not the object reference.

So here is the code that works:

step = xml_obj.find('.//step/name[text()="Design"]').getparent()

If i try to replace the string with an object, the result is always None.

stepn = 'Design'
step = xml_obj.find('.//step/name[text()=stepn]').getparent()

'NoneType' object has no attribute 'getparent'
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
stepn = 'Design'
step = xml_obj.find('.//step/name[text()={}]'.format(stepn)).getparent()

when you use ' ', it's a string , any element in string will be treated as a string, not a variable.

Use format to add variable to string


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...