The problem is to find the value from the red line intersecting the 0.0 level (black line). The red line is plotted as follows:
plt.plot(C, iG, color='r')
plt.plot(C, iG, 'o', color='r', markersize=6)
and the black line is plotted with:
plt.axhline(y=0, color='k')
Variables are here:
C = [0, 20, 40, 60, 80, 100]
iG = [1.3872346819371657, 0.7872943505903507, 0.17782668886707143, -0.44058186267346144, -1.0673973968907333, -1.7021324469635957]
So, there is only one line (i.e., 6 x,y pairs that form the red line).
Figure is here: