1
我想使用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
?
謝謝,它工作正常:) – Hamideh