I have the following code:
import matplotlib.pyplot as plt
x=0
xval=[]
yval=[]
for i in range(0,1000):
x=i
xval.append(x)
y=1-(0.99**x)
yval.append(y)
plt.axhline(0.5, color='r')
plt.axvline(69, color='r')
plt.plot(xval,yval)
plt.show()
I want to highlight the 69 on the x-axis like this:

Does anyone know how to show a specific x value on the axis?
