Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Copying Arrays | Important Functions
NumPy in a Nutshell
course content

Course Content

NumPy in a Nutshell

NumPy in a Nutshell

1. Getting Started with NumPy
2. Dimensions in Arrays
3. Indexing and Slicing
4. Important Functions

Copying Arrays

It's worth noting that NumPy offers various methods for duplicating arrays. In this section, we'll explore one of these methods, namely: .copy().

Note

The .copy() method creates a new array with the data from the original one.

Using the .copy() method:

123456789
import numpy as np arr = np.array([7, 43, 56, 123, 10, 3]) x = arr.copy() arr[0] = 42 print(arr) print(x)
copy

Task

You have the following array: [12, 56, 78, 65, 1, 5].

You have to obtain the following arrays using the correct method: arr_1 = [11, 56, 78, 0, 1, 5] arr_2 = [12, 56, 78, 65, 1, 5]

Replace element 12 with 11, and element 65 with 0.

Task

You have the following array: [12, 56, 78, 65, 1, 5].

You have to obtain the following arrays using the correct method: arr_1 = [11, 56, 78, 0, 1, 5] arr_2 = [12, 56, 78, 65, 1, 5]

Replace element 12 with 11, and element 65 with 0.

Switch to desktop for real-world practiceContinue from where you are using one of the options below

Everything was clear?

Section 4. Chapter 5
toggle bottom row

Copying Arrays

It's worth noting that NumPy offers various methods for duplicating arrays. In this section, we'll explore one of these methods, namely: .copy().

Note

The .copy() method creates a new array with the data from the original one.

Using the .copy() method:

123456789
import numpy as np arr = np.array([7, 43, 56, 123, 10, 3]) x = arr.copy() arr[0] = 42 print(arr) print(x)
copy

Task

You have the following array: [12, 56, 78, 65, 1, 5].

You have to obtain the following arrays using the correct method: arr_1 = [11, 56, 78, 0, 1, 5] arr_2 = [12, 56, 78, 65, 1, 5]

Replace element 12 with 11, and element 65 with 0.

Task

You have the following array: [12, 56, 78, 65, 1, 5].

You have to obtain the following arrays using the correct method: arr_1 = [11, 56, 78, 0, 1, 5] arr_2 = [12, 56, 78, 65, 1, 5]

Replace element 12 with 11, and element 65 with 0.

Switch to desktop for real-world practiceContinue from where you are using one of the options below

Everything was clear?

Section 4. Chapter 5
toggle bottom row

Copying Arrays

It's worth noting that NumPy offers various methods for duplicating arrays. In this section, we'll explore one of these methods, namely: .copy().

Note

The .copy() method creates a new array with the data from the original one.

Using the .copy() method:

123456789
import numpy as np arr = np.array([7, 43, 56, 123, 10, 3]) x = arr.copy() arr[0] = 42 print(arr) print(x)
copy

Task

You have the following array: [12, 56, 78, 65, 1, 5].

You have to obtain the following arrays using the correct method: arr_1 = [11, 56, 78, 0, 1, 5] arr_2 = [12, 56, 78, 65, 1, 5]

Replace element 12 with 11, and element 65 with 0.

Task

You have the following array: [12, 56, 78, 65, 1, 5].

You have to obtain the following arrays using the correct method: arr_1 = [11, 56, 78, 0, 1, 5] arr_2 = [12, 56, 78, 65, 1, 5]

Replace element 12 with 11, and element 65 with 0.

Switch to desktop for real-world practiceContinue from where you are using one of the options below

Everything was clear?

It's worth noting that NumPy offers various methods for duplicating arrays. In this section, we'll explore one of these methods, namely: .copy().

Note

The .copy() method creates a new array with the data from the original one.

Using the .copy() method:

123456789
import numpy as np arr = np.array([7, 43, 56, 123, 10, 3]) x = arr.copy() arr[0] = 42 print(arr) print(x)
copy

Task

You have the following array: [12, 56, 78, 65, 1, 5].

You have to obtain the following arrays using the correct method: arr_1 = [11, 56, 78, 0, 1, 5] arr_2 = [12, 56, 78, 65, 1, 5]

Replace element 12 with 11, and element 65 with 0.

Switch to desktop for real-world practiceContinue from where you are using one of the options below
Section 4. Chapter 5
Switch to desktop for real-world practiceContinue from where you are using one of the options below
We're sorry to hear that something went wrong. What happened?
some-alt