How does one convert an uppercase string to proper sentence-case? Example string:
\"OPERATOR FAIL TO PROPERLY REMOVE SOLID WASTE\"
Using
Let's use an even more appropriate function for this: string.capitalize
>>> s="OPERATOR FAIL TO PROPERLY REMOVE SOLID WASTE" >>> s.capitalize() 'Operator fail to properly remove solid waste'