Definition
Complete the solution so that the function will break up camel casing, using a space between words.
solution("camelCasing") == "camel Casing"def solution(s):
passdef solution(s):
return "".join([" " + c if c.isupper() else c for c in s])