I am trying to capitalize all occurrences of the word 'I' - not letter 'i'.
Input: this is my input, how do i do capitalize the word i?
Expected: this is my input, how do I do capitalize the word I?
I have tried a simple .replace('i', 'I')
but obviously that doesn't work.