Ask Question
7 April, 13:40

In Python, arrays are usually reserved for

sorting operations.

indexing operations.

searching operations.

numerical operations.

+4
Answers (1)
  1. 7 April, 17:04
    0
    Searching Operations

    Explanation:

    Basic operations of array are

    Traverse Insertion Deletion Search Update

    Search Operation

    In this operation you can search array element based on value or its index

    from array import *

    array1 = array ('i',[10,20,30,40,50])

    print (array1. index (30))

    when we execute it it search and gives us output : 2
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “In Python, arrays are usually reserved for sorting operations. indexing operations. searching operations. numerical operations. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers