Access individual elements through indexes
Append any value to the array using append method
Insert value in an array using insert method
Extend python array using extend method
Add items from list into array using fromlist method
Remove any array element using remove method
Remove last array element using pop method
Fetch any element through its index using index method
Reverse a python array using reverse method
Get array buffer information through buffer info method
Check for number of occurrences of an element using count method
Convert array to string using tostring method
Convert array to a python list with same elements using tolist method