Python Program to check two arrays are equal or not

In this tutorial, you will learn how to write Python program to compare two arrays and check that they are equal in size or not.

To check two array is equal or not in size, first calculate the size of both array using len() function of Python.

Now after finding length we can just compare it using if statement. 

Python Program to check the size of given two arrays are equal or not

arr1=[1,2,3,4,5]
arr2=[1,3,4,5,7]
if len(arr1) == len(arr2):
    print("array is equal")
else:
    print("array is not equal") 

Output:

array is equal or not in python