0% found this document useful (0 votes)
12 views

array in python

program in array

Uploaded by

Dilip Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

array in python

program in array

Uploaded by

Dilip Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Programs Based on Array

1. Write a Python program to convert an array to an ordinary list


with the same items
2. Write a Python program to find sum of elements in an array
3. Write a Python program to find largest element in an array
4. Write a Python program to Split the array and add the first
part to the end
5. Write a Python program for Find reminder of array
multiplication divided by n
6. Write a Python program to remove the first occurrence of a
specified element from an array.
7. Write a Python program to Reconstruct the array by replacing
arr[i] with (arr[i-1]+1) % M
8. Write a Python program to create an array of 5 integers and
display the array items. Access individual element through
indexes.
9. Write a Python program to append a new item to the end of
the array
10. Write a Python program to reverse the order of the items in
the array.
11. Write a Python program to get the number of occurrences of
a specified element in an array.
12. Write a Python program to append items from inerrable to
the end of the array.
13. Write a Python program to append items from a specified
list.
14. Write a Python program to insert a new item before the
second element in an existing array.
15. Write a Python program to remove a specified item using
the index from an array.

You might also like