我想恢复一个标签的整数值
from xml.dom import minidom
docXML = minidom.parse('/root/Desktop/doc.xml')
node = docXML.getElementsByTagName('span')[0]
value = node.firstChild.data
" return value is 5.22%"
str1 = value.split('%')
"return [u'n5.22', u'n']"
finalvalue = ''.join(str1)
"return 5.22"
但是如果我要转换这个字符串字符
convert = int(finalvalue)
我得到了以下错误
"ValueError invalid literal for int() with base 10: '5.22 ' "
当我使用split方法时,我得到以下结果:
[u'n5.22', u'n']
使用strip()
在转换为整数之前从字符串中删除空白,&使用float(the_str)将其转换为float。
>>> num_str = '5.22 '
>>> int(num_str)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: '5.22 '
>>> float(num_str.strip())
5.22