when i run this code:
ob = bpy.context.active_object
point = ob.location
print (point)
offset = 5
ob.location[1] = ob.location[1] + offset
print (point)
i get Vector (0.0000, 0.0000, 0.0000)
the first time i run the print command and
Vector (0.0000, 5.0000, 0.0000)
the second time.
i want a copy of the location Not a reference.