How would I go about comparing two different numpy arrays to create a third array? I want to write a loop that goes through two arrays and prints a new array "c" with only the values that are not in a or b
For example say I have
a = [1,2,3,4]
b = [1,2,3,4,5,6,7,8,9]
I want it to print:
c = [5,6,7,8,9]