Is there a way to enter a sentence str and capitalize all the names in it?
test_str = 'bitcoin is not dead and ethereum is cool'
I wish to convert it to
test_str = 'Bitcoin is not dead and Ethereum is cool'
Is this possible? My first thought is to use the re module to locate the name then modify it but then realized the names don't seem to have a specific pattern.