Python - Look for all methods of an object that contain a specified string as part of the method name
import numpy as np [s for s in dir(np) if "array" in s]