Ask Question
17 October, 20:44

In Python, arrays are usually reserved for

sorting operations.

indexing operations.

searching operations.

numerical operations.

+1
Answers (1)
  1. 17 October, 22:33
    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?
Find an answer to your question ✅ “In Python, arrays are usually reserved for sorting operations. indexing operations. searching operations. numerical operations. ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers