Convert Vec3() to integer?

vec_to_int = lambda v: (int(v.x), int(v.y), int(v.z))

newVec = vec_to_int(myVecFloat)