Qyouu
123456import numpy as npa = np.arange(100)b = a + 0.3c = a + 0.6for i in range(len(a)): print a[i], b[i], c[i]把这里的a,b,c三个数组换成你的三个数组即可