How does one convert an uppercase string to proper sentence-case? Example string:
"OPERATOR FAIL TO PROPERLY REMOVE SOLID WASTE"
Using titlecase(str)
gives me:
"Operator Fail to Properly Remove Solid Waste"
What I need is:
"Operator fail to properly remove solid waste"
Is there an easy way to do this?
question from:https://stackoverflow.com/questions/39969202/convert-uppercase-string-to-sentence-case-in-python