To create a histogram of 'step' type in Matplotlib, we can use the `plt.hist()` function with the argument `histtype = "step"` to get the step-type histogram. The parameter `bins = 20` specifies the number of bins to divide the data into. The correct statement is: \texttt{plt.hist(x, bins = 20, histtype = "step")}.