CSC 203 chapter 7: Array-Oriented Programming with NumPy

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/3

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

4 Terms

1
New cards

ndarray

n-dimensional array type

2
New cards

import numpy as np

The NumPy documentation recommends importing the numpy module as np so that you can access its members with "np."

3
New cards

np.array()

array function receives as an argument an array or other collection of elements and returns a new array containing the argument’s elements

4
New cards

The array function

copies its argument’s contents into the array