Computer Science, asked by percivalshimange, 4 days ago

Find the minimum element in the array and find how many times the number 17 appears in same code using:
i. Standard Python
ii. Numpy
iii. Pandas

Answers

Answered by ihtishamZmary
0

Explanation:

STEP 1: Declare and initialize an array.STEP 2: Store first element in the variable min.STEP 3: Loop through the array from 0 to length of the array and compare the value of min with elements of the array.STEP 4: If any element is less than min, min will hold the value of that element.

More items...

Similar questions