There are some actors in same scene, I need to hide an actor of specific index (Not remove it, just hide). Maybe There are some API in python-vtk, but i don't know.
To hide an actor:
actor.GetProperty().SetOpacity(0)
Here is the vtkProperty API (c++ but Python is quite the same)
Or as @mmusy suggest, simply
actor.VisibilityOff()