I am trying to convert camel case to space separated values using python. For example:
divLineColor -> div Line Color
This lin
Other method:
def solution(s): return ''.join(' ' + c if c.isupper() else c for c in s) print(solution("mehdHidi"))