有人可以帮我弄清楚我对testdome的回答有什么问题吗?

时间:2019-06-17 00:57:44

标签: html css

这里是question

的链接

这是我的答案

linereg = LinearRegression().fit(X_train, y_train)

在我的IDE上运行正常,但是在网站上说4个测试用例中有3个失败。

1 个答案:

答案 0 :(得分:1)

这里的网站似乎比仅仅检查它看起来是否一样严格。要使测试通过,您需要:

  1. 将包含<th>标签的行放在<thead></thead>之间。
  2. 将标题移出<thead>

该表的正确代码将如下所示:

<table>
  <caption>Purchase Orders</caption>
  <thead>
    <tr>
      <th>Order Date</th>
      <th>SKU</th>
      <th>Quantity</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>07-16-2018</td>
      <td>523402</td>
      <td>54</td>
    </tr>
  </tbody>
</table>