为什么bash不允许我编辑此字符串?

时间:2019-02-22 19:41:42

标签: string bash echo

下面的回声一直让我返回空白行。我不明白为什么。 bash中的所有内容都不会像全局变量一样起作用吗?

import xml.etree.ElementTree as ET

tree = ET.parse("input.xml")

for employee in tree.findall("Employee"):
    eessn = employee.find("EESSN")
    for dependent in employee.findall("Dependent"):
        dependent.append(eessn)

tree.write("output.xml")

0 个答案:

没有答案