I do not understand the end of this statement:
print node.getElementsByTagName(`author')[0].childNodes[0].data.strip()
What does data.strip() do in this statement?
|
|
It removes extra whitespace from the beginning and end of the string. This is not XML-specific, but is a general string method in Python which you can find in the documentation here. |
|||
|
|
|
Return a copy of the string with leading and trailing characters removed (defaulting to removing whitespace characters) |
|||
|
|