Python string capitalize(), title(), lower(), upper(), swapcase(): Convert lowercase to uppercase and uppercase to lowercase
You can convert a string to titlecase, lowercase, etc in Python.
python
s = 'i am aN aPPle.'
capitalize = s.capitalize()
title = s.titl...