我有一个问题,nltk库在python3上导入imap,而我运行这部分代码
<table class="table table-condensed">
<thead>
<tr>
<th>Supplier</th>
<th>Product Code</th>
</tr>
</thead>
<tbody>
<tr t-foreach="order_line.product_id.product_tmpl_id.seller_ids" t-as="s">
<td>
<span t-esc="s.name.name"/>
</td>
<td>
<span t-esc="s.product_code"/>
</td>
</tr>
</tbody>
</table>
我得到了
from nltk.compat import imap
提前致谢