Summary for myself Updated from time to time Describe the command you used and examined ** I just need to know myself, so the terms may be wrong in some places **
!! View
#command
#Argument option description
import numpy as np
#Create an array of numpy.
array = np.array()
#Transform the array
array.reshape([line:Column])
#Either the row or column of the argument-If set to 1, it will be calculated automatically from the other argument.
You may think that an array should be "list", but numpy.array () seems to be able to perform various operations and is much faster than list when turning a for statement.
Recommended Posts