46.5k views
8 votes
Test 8

Question 6

Why do we use for loops with arrays?

Group of answer choices


Lets us quickly process contents of the array.


For loops let us access one specific element of an array.


For loops let Python handle the values as strings not numbers.


To store one piece of data at a time.


Flag this Question

Question 71 pts

The ___________ method adds all the elements of a list onto the end of an array.

Group of answer choices


extend


append


insert


pop


Flag this Question

Question 81 pts

The ___________ method removes elements from an array by the value, not the location.

Group of answer choices


pop


extend


remove


append

User WizLiz
by
5.6k points

1 Answer

10 votes

Answer:

to store multiple data of the same type in a contiguous memory location

Step-by-step explanation:

User Prince Jea
by
6.3k points