numpy.arange([start, ]stop, [step, ]dtype=None, *, device=None, like=None)range를 사용하면 start부터 end까지 step씩 올라가며 수를 세준다.arange는 마찬가지이지만 numpy 배열을 생성해준다.인자(Parameters)start:integer or real, optional하한선을 의미한다. stop:integer or real상한선을 의미한다.기본적으로 [start,end)의 범위로 계산한다. step:integer or real, optional간격을 의미한다.step을 입력하려면 start도 입력해야 한다. dtype:dtype, optional출력의 데이터 타입을 의미한다.주어지지 않으면 start나 end로부터 추론해서 ..