Вы можете использовать функцию matplotlib
s scatter(x,y)
вместе с numpy
:
import numpy as np
import matplotlib.pyplot as plt
lists = np.array([[[44.9597, 7.7825], [44.9646, 7.7816], [45.1206, 7.7115]], \
[[45.0021, 7.6733], [45.003, 7.6678]], \
[[45.0746, 7.5985], [45.0735, 7.5956],[44.9706, 7.704],[45.0811, 7.5511]], \
[[45.1205, 7.7116]]])
plt.figure()
for l in lists:
ar = np.array(l) # convert to numpy array for use of indices in next line
plt.scatter(ar[:,1], ar[:,0])
plt.show()