XML - python 打印额外的行
from xml import xpath
from xml.dom import minidom
xmldata = minidom.parse('model.xml').documentElement
for maks in xpath.Evaluate('/cacti/results/maks/text()', xmldata):
print maks.nodeValue
我得到结果:
85603399.14
398673062.66
95785523.81
但我需要是:
85603399.14
无空间
398673062.66
无空间
95785523.81
有人可以帮助我吗?我是编程新手
from xml import xpath
from xml.dom import minidom
xmldata = minidom.parse('model.xml').documentElement
for maks in xpath.Evaluate('/cacti/results/maks/text()', xmldata):
print maks.nodeValue
And I get result:
85603399.14
398673062.66
95785523.81
But I needed to be:
85603399.14
NO SPACE
398673062.66
NO SPACE
95785523.81
Can somebody help me? I am new at programming
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用途:
末尾的逗号不会插入额外的换行符。
Use:
The comma at the end doesn't insert the extra newline.