Skip to content
cocoing edited this page May 1, 2018 · 1 revision

numpy基础

import numpy as np a = np.array([0,1,2,3,4]) b = np.array((0,1,2,3,4)) c = np.arange(5) d = np.linspace(0,2*np.pi,5)

Clone this wiki locally