camel_case¶
- lsst.ts.m2com.camel_case(string_python: str) str ¶
Formate the string of Python style to camel case. For example, ‘ab_cd’ will be reformated to ‘abCd’.
Copy from: https://www.w3resource.com/python-exercises/string/ python-data-type-string-exercise-96.php
Parameters¶
- string_python
str
Python-style string.
Returns¶
str
String of camel case.
- string_python