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
positionD? – Ignacio Vazquez-Abrams Jun 2 '12 at 3:14positionD = dictwhere you wantedpositionD = dict()? If so, consider the simpler alternative:positionD = {}:) – Karl Knechtel Jun 2 '12 at 4:51