numpy创建指定数据范围的数组

用numpy创建一个两行三列,数据元素范围在±0.1的数组,怎么写?

import numpy
a=numpy.random.uniform(-0.1,0.1,size=(2,3))
print(a)