但是当我导入camelcase并运行代码时,我看到一个错误:
ModuleNotFoundError:没有名为“ camelcase”的模块
仅出于信息目的,我编写代码的文件位于其他位置。
我在Python中非常绿,所以请帮助我解决此错误,
import camelcase
c = CamelCase()
txt = "hello world"
print(c.hump(txt))
答案 0 :(得分:0)
您安装了骆驼套吗?如果您使用的是虚拟环境,是否正在使用安装它的环境?
您可以通过在命令行上运行const initialState = {};
interface Action {
type: string;
bestResults: []
}
export const listingReducer = (state = initialState, action: Action) => {
switch (action.type) {
case "GET_SUCCESS":
return {
...state,
bestResults: action.bestResults,
searchError: false
};
case "GET_ERROR":
return {
...state,
searchError: true
};
default:
return state;
}
};
来检查安装的内容。
答案 1 :(得分:0)
问题与您的导入有关,请尝试以下操作:
from camelcase import CamelCase
c = CamelCase()
txt = "hello world"
print(c.hump(txt))
输出:
Hello World