Access to data read by legacyVTKreader in Paraview

In the Paraview Information panel as shown in the screenshot below:

I can see the general information and data for the given data set. I hope to explore and print the values (coordinates/scalar/vector variable values) of an element with a specific element ID or maybe index in the python script. Is there any method I can use to gain access to the data in python script for the data set read by a legacyVTKreader?

If all you need is the data stored in the VTK file and none of Paraview’s visualization capabilities why don’t you just load the VTK file right in python with one of the python packages designed for this purpose?
(e.g. https://github.com/nschloe/meshio)

servermanager.Fetch should do the trick.
https://kitware.github.io/paraview-docs/latest/python/paraview.servermanager.html#paraview.servermanager.Fetch

Thank you so much for your help. This address my issue.