Try this: def camel_to_snake(camel_string): return ''.join(['_' + ch.lower() if i > 0 and ch.isupper() else ch.lower() for i, ...
確定! 回上一頁