I want to draw a scattered plot using python. I have these two 2D arrays and I want to show them in same scattered plot.
[[69, 72], [72, 80], [74, 81], [70, 75], [78, 87], [71, 73], [69, 70], [71, 77]]
[[78, 139], [80, 158], [85, 154], [72, 105], [84, 148], [74, 87], [73, 106], [71, 109]]
How can I do this? I want points of different arrays to be of different colors. I'm using python 3.x
