我尝试了以下内容:
$year = "2016";
$month = "4";
$day = "23";
$hour = "4";
$minute = "0";
它有效,但我确信这个
有一个更优雅的解决方案答案 0 :(得分:-1)
您可以使用findall
:
tree = ET.parse(latestSumocfg)
for grandchild in tree.findall('input/*'):
print(granchild.get('value'))
或者如果您使用lxml
的ElementTree实现:
tree = lxml.etree.parse(latestSumocfg)
for value in tree.xpath('input/*/@value'):
print(value)