I need to change a sign from positive to negative within a tuple that's in a dictionary. So if I have 'position: (3,4)' I need to change it to 'position: (3,-4)'. This is what I have but it's not working.
for k,v in positionD.items():
v = (v[0],-v[1])
positionNewD[k] = v