在python上编码时,我遇到了使用PIP导入模块的问题。问题是我无法导入单个模块,例如“ camelcase”。有人可以帮我吗?
import camelcase
c = camelcase.CamelCase()
txt = "hello world"
print(c.hump(txt))
预计输出将是“ Hello World”。但是出现以下错误:
回溯(最近通话最近): 在第1行的文件“ mycode.py”中 进口驼包 ModuleNotFoundError:没有名为“ camelcase”的模块
答案 0 :(得分:1)
ModuleNotFoundError:没有名为“ camelcase”的模块。错误明确指出您需要安装camelcase软件包
official docs of camelcase package
使用以下命令:
pip install camelcase
import camelcase
c = camelcase.CamelCase()
txt = "hello world"
print(c.hump(txt))
您也可以代替第三方软件包
print(txt.title())