Answers for "compare two ndarray python"

0

python compare two arrays

a = [1, 2, 3, 4]
b = [5, 6, 7]
c = [1, 2, 3, 4]

a == b # False
a == c # True
Posted by: Guest on March-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language