摘要:
### Exercise 1: Pascal’s TriangleThe following pattern of numbers is called Pascal’s triangle.```bash 1 1 1 1 2 1 1 3 3 11 4 6 4 1 ...```The numbers at the edge of the triangle are all 1, and ... 阅读全文
摘要:
预先导入库 from sklearn.linear_model import LinearRegression from sklearn.preprocessing import PolynomialFeatures import matplotlib.pyplot as plt import nu 阅读全文