This provides examples of uses of interactive functions, such as ginput,
from __future__ import print_function
import matplotlib.pyplot as plt
import numpy as np
t = np.arange(10)
plt.plot(t, np.sin(t))
print("Please click")
x = plt.ginput(3)
print("clicked", x)
plt.show()
Total running time of the script: ( 0 minutes 0.000 seconds)