我想使用 Python 2.7 在 xml 文件中添加持续时间属性。
import xml.etree.ElementTree as ET
import time
for k in root.findall('TC'):
ttt= k.get('time')
s = time.strptime(ttt, "%H:%M:%S")
total_time = total_time + s
我不能使用+
运算符,错误是unsupported operand types (+) None_Type, time.struct_time
.
我如何定义total_time
为struct_time
?