How to remove x and y axis co-ordinate line from the below image

Summary

How to remove the x and y co-ordinate from the below attached image.

Code snippet:

ax.set_xlim([0, 10])
    ax.set_ylim([0, 10])
    ax.set_aspect('equal')
    st.pyplot(fig)

Have a look at this.

Thank you ferdy. It helped.