代码示例:(标识:python_camelcase)
python_camelcase.py
import camelcase

c = camelcase.CamelCase()

txt = "hello world"

print(c.hump(txt))
运行结果: