Python Sklearn Linear Regression Slope

lm = LinearRegression()
lm.fit(mpg, price)

print(lm.intercept_)
print(lm.coef_)
Odd Okapi