I have :
a=['ab',200]
cap_init=150
I actually want to update the value of my variable a[1]
under some condition. The program can't run this instruction:
int(a[1])=int(a[1])-self.cap_init
It gives this error :
"SyntaxError: can't assign to function call"