Colab ์คํ : Shfit + Enter ํ๊ท ํ๋ก๊ทธ๋จ ๋ง๋ค๊ธฐ from scipy import statsx = [2, 3, 4, 5, 9, 10]y = [30, 50, 60, 65, 80, 90]slope, intercept, r, p , std_err = stats.linregress(x, y)def score_predict(a): return slope * a + interceptlearning_time = int(input('์์ธกํ๊ณ ์ถ์ ๊ณต๋ถ์๊ฐ์ ์ ๋ ฅํ์ธ์:'))score = score_predict(learning_time)print(score)