How do I output the result from my delaunay triangulation in the code below. I know how to plot it with matplotlib but cant figure out how to output the numbers. Print just ouputs the objects but I cannot figure out how to access it.
import matplotlib.pyplot as plt
from scipy.spatial import Delaunay, delaunay_plot_2d
from scipy.spatial import Delaunay
import numpy as np
points = np.array([[0.1933333, 0.47],
[0.1966667, 0.405],
[0.2066667, 0.3375]])
tri = Delaunay(points)
print(tri)
delaunay_plot_2d(tri)
plt.plot(points[:, 0], points[:, 1], 'o')
plt.show()