I've been struggling learning how to deal with arrays made up of arrays.
Say I had this array:
my_array = [['ORANGE',1],['APPLE',2],['PEACH',3]
How would I go about finding the my_array index that contains 'apple' and deleting that index (removing the sub-array ['APPLE',2] because 'apple' was conatined in the array at that index) ?
Thanks - I really appreciate the help from here.