Tia has a bad habit of typing text incorrectly. As his teacher, you want to correct the text he wrote using the string methods in Python. Given the text he has typed:
- Convert the text typed to lowercase using
.lower()
- Split the sentences by
.
- Capitalize the first letter of every sentence using
.capitalize()
- Join the sentence again by
.
- Print the text once done.
Note that there is a space after the full stop. .