I have created a scatterplot showing the poles of a function on the complex plane. To make it more clear and immediately visible where the poles are in relation to the origin I'd like to make the coordinate axes (the lines x=0 and y=0) thicker/blacker, is there any way to do that with matplotlib.
Bonus question: Can I make the lines thicker/blacker and have little arrowheads at the end.
Minimalistic example of how I've plotted it
import matplotlib.pyplot as plt
import numpy as np
poles = [1,0,-1+1j, -1-1j]
plt.scatter(np.real(poles),np.imag(poles),marker='x')