Dejar caer múltiples columnas consecutivas

cols = np.arange(1, 18).tolist()
df = alpha.drop(alpha.columns[cols],axis=1)
Chunxiao Wang