1 Introduction To Numpy
Introduction to Numpy
How to install numpy
pip install numpyImport Numpy
import numpy as np # np is a short name that we give to numpyLet's take an example
score = [20, 50, 30, 70, 10]
score[20, 50, 30, 70, 10]divide each score with 100

List to array Conversion
What is Array?
How to convert list into array?
int and float
int and string
float and string and int
you can forcibly change the data type of array values
limitation
Last updated