How can I perform case-insensitive comparison of array of different data types in python?
Problem: Basically I'm comparing arrays, and array have different data types in it i.e.
Array1 = [1, 2.9, "Hello"], Array2 = [1, 2.9, "hello"]
I need a solution where Array1==Array2 should give me true ignoring the case sensitiveness.
What I already tried: I did some research and found something like I should convert both arrays in lower or uppper case, and then compare but this is affecting the performance as I'm already comparing 2,3 Billion of arrays :)