アットウィキロゴ

000lc

import numpy as np
x = np.ones(3)            # Vector of three ones
y = np.array((2, 4, 6))   # Converts tuple (2, 4, 6) into array
print(x + y)
最終更新:2018年01月22日 19:07