ImportError:无法导入名称' imap'

时间:2018-06-01 08:57:23

标签: python-3.x nltk

我有一个问题,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

提前致谢

0 个答案:

没有答案