I am trying to reverse the values generated by "for"loop
Import rhinoscriptsyntax as rs
for i in range(0,40):
pts = rs.addpoint(i,0,0)
rs.addsphere(pts,i/4)
so this is what i did first and now i want to reverse the values.Scale the spheres the opposite.
i tried reversed method as in general python and negative values.