但是,当我导入camelcase并运行代码时,我看到一个错误:


  ModuleNotFoundError:没有名为“ camelcase”的模块


仅出于信息方面的考虑,我编写代码的文件位于其他位置。

我的Python非常环保,请帮助我解决此错误,

import camelcase
c = CamelCase()
txt = "hello world"
print(c.hump(txt))

最佳答案

问题与您的导入有关,请尝试以下操作:

from camelcase import CamelCase
c = CamelCase()
txt = "hello world"
print(c.hump(txt))


输出:

Hello World

关于python - 我使用pip在python中安装了camelcase软件包,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52806579/

10-09 09:03