import numpy as np B = np.arange(3) print (B) print (np.exp(B)) # 打印e的幂次方,e是一个常数为2.71828 print (np.sqrt(B)) # 打印B里每个元素的 ...
確定! 回上一頁