xs = [[1, 2, 3], [4, 5, 6]] ys = [[1, 2, 3], [4, 5, 6]] m = ['o', 'x'] for i in range(len(xs)): plt.scatter(xs[i], ys[i], marker=m[i]) plt.show()