Introduction
Tutorials
Modules
Interfaces
Acknowledgements
References
Converts a string from CamelCase to snake_case
Example
>>> print(snake_case("ThisIsATest")) this_is_a_test
s – input string
converted string
str