I'm hoping to combine two arrays...
a = np.array(["A", "B", "C"])
b = np.array(["1", "2", "3", "4", "5"])
into an array (matrix) similar to this:
[["A", "B", "C", "1"]
["A", "B", "C", "2"]
["A", "B", "C", "3"]
["A", "B", "C", "4"]
["A", "B", "C", "5"]]
I've tried a for-loop, but it doesn't seem to work. I'm new to Python, any help will be appreciated. Thanks.