Thank you for your help.
This the procedure which I want to add two statements (Mean&SD), but it does not work.
def updateProcess(id,List_flow):
pro = olca.getProcess(id)
#exs = pro.getExchanges()
exs = pro.exchanges
for ex in exs:
k=0
for j in List_flow:
if ex.flow.name == List_flow[k][0] and ex.flow.category.name==List_flow[k][2]:
ex.amount = float(List_flow[k][1])
log.info("{} uncertainty", ex.uncertainty)
#here the problem
ex.uncertainty.mean=3
break
k=k+1
olca.updateProcess(pro)
log.info("{} has been updated",pro.name)
return
I hope you can help me.