u10-script-numpy Flashcards

1
Q

Question;Answer

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you convert a 2D list to a 1D (flattened) NumPy array?;Use np.array(my_2d_list).flatten() or np.array(my_2d_list).reshape(-1). Both methods will flatten the array into a 1D array.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are different ways to flatten a 2D Python list to 1D?;1. List comprehension: [element for row in my_2d_list for element in row]\n2. Using sum: `sum(my_2d_list

A

start=[])\n3. Iterative append: [my_1d_list.append(element) for row in my_2d_list for element in row]`

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you create a NumPy array of ones with a specific shape and dtype?;Use `np.ones(shape=(rows

A

cols)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you create a range of values in NumPy?;Use np.arange(stop) or `np.arange(start

A

stop). Example: np.arange(11) creates array [0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you select a specific row in a NumPy array?;Use array indexing with the row number: arr[row_index]. Example: arr[0] selects the first row.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you select a specific column in a NumPy array?;Use array indexing with a colon and column number: `arr[:

A

column_index]. Example: arr[:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you select the last N rows and columns of a NumPy array?;Use negative slicing: `arr[-N:

A

-N:]. Example: arr[-3:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does reshape(-1) do in NumPy?;It flattens an array to 1D

A

automatically calculating the required length. The -1 tells NumPy to calculate the appropriate dimension size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you reshape a NumPy array to a specific 3D shape?;Use `arr.reshape(dim1

A

dim2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you perform element-wise multiplication in NumPy?;Use the * operator or multiply method. Example: `arr[:

A

2] *= 3` multiplies all elements in column 3 by 3.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you create an array of 64-bit integers in NumPy?;Use the dtype parameter with np.int64: `np.arange(11

A

dtype=np.int64)`

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you square all values in a NumPy array?;Use the ** operator: squared = values ** 2

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do you filter values in a NumPy array based on a condition?;Use boolean indexing: arr[arr % 3 == 0] gets all values divisible by 3

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is broadcasting in NumPy?;Broadcasting is NumPy’s way of performing operations on arrays of different shapes. It automatically expands arrays to compatible shapes when possible.

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you add a new axis to a NumPy array?;Three ways:\n1. `arr[np.newaxis

A

:]\n2. arr[None

17
Q

How do you generate random numbers from a uniform distribution in NumPy?;Use np.random.default_rng().random(size) * range. Example: rng.random(10) * 4 generates 10 random numbers between 0 and 4.

18
Q

How do you find the maximum value in a NumPy array?;Use the max() method or np.max(): arr.max() or np.max(arr)

19
Q

How do you sort a NumPy array?;Two ways:\n1. In-place: arr.sort()\n2. Create new array: np.sort(arr)

20
Q

What’s the difference between arr.sort() and np.sort(arr)?;arr.sort() modifies the array in-place

A

while np.sort(arr) returns a new sorted array leaving the original unchanged.

21
Q

How do you set a random seed in modern NumPy?;Use rng = np.random.default_rng(seed=value) to create a random number generator with a fixed seed.