In this python numpy program, we will make an array immutable using NumPy.
Steps to solve the program
- Import the numpy library as np.
- Create an array using np.array().
- Make an array immutable i.e. read-only by setting flags.writeable as False.
- When we try to change any value of the array it will show the error as
ValueError: assignment destination is read-only.
import numpy as np
x = np.array([[5, 3],[7, 4]])
x.flags.writeable = False
x[0,1] = 0
Output :
ValueError Traceback (most recent call last)
in
3 x = np.array([[5, 3],[7, 4]])
4 x.flags.writeable = False
----> 5 x[0,1] = 0
ValueError: assignment destination is read-only