I have two arrays with string values, they have similar values and different ones, how can I remove the same values from them and put the remnants in two different arrays? Example from below
one_ar = ['Python', 'Java', 'C']
two_ar = ['Python', 'Lua']
one_result = ['Java', 'C']
two_result = ['Lua']