While coding on python I faced a problem with importing modules using PIP. The thing is that I can not import a single module, for example "camelcase". Would someone help me?
import camelcase
c = camelcase.CamelCase()
txt = "hello world"
print(c.hump(txt))
It is expected that the output will be "Hello World". But there is following an error:
Traceback (most recent call last): File "mycode.py", line 1, in import camelcase ModuleNotFoundError: No module named 'camelcase'
pip install camelcase- Devesh Kumar Singh