2

我正在运行一个程序,用于使用counter函数对文件中的数据进行排序。
所以,很明显我把from collections import Counter我的程序放在首位。
现在的问题是,当我使用 unix cShell 运行我的脚本时,我收到一条错误消息:“ImportError:Can not import counter”,但是如果我在 MS-DOS 中执行相同的程序运行良好。
我正在使用 python 2.7.3

请帮帮我。

4

1 回答 1

2

collections.Counter在 Python 2.7 中是新的。大概您的 UNIX 系统的版本低于 2.7。

于 2012-05-19T18:41:08.180 回答