my_string = input("Enter words. ")
i = 0
result = ()
for c in my_string:
if c.isupper() and i > 0:
result += ( )
result += c.lower()
else:
result += c
i += 1
print result
I've been trying to make a word separator for python except I'm having a lot of trouble with it, I've found a similar question on StackOverflow except they don't use an input statement which is what I'm trying to figure out. I have this to go off of, I just need to make it to where there's an input statement involved to ask the user to input whatever they cluster of words they want to be separated. Thanks a lot!