Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个程序,用于使用counter函数对文件中的数据进行排序。 所以,很明显我把from collections import Counter我的程序放在首位。 现在的问题是,当我使用 unix cShell 运行我的脚本时,我收到一条错误消息:“ImportError:Can not import counter”,但是如果我在 MS-DOS 中执行相同的程序运行良好。 我正在使用 python 2.7.3
counter
from collections import Counter
请帮帮我。
collections.Counter在 Python 2.7 中是新的。大概您的 UNIX 系统的版本低于 2.7。
collections.Counter