1 min readJan 8, 2020
Martin, I should’ve probably added it in the introduction to the article, but I shy away from .title()
because it modifies the other letters if any of them are capitalized.
message = "hi my initials are JAH"
print(message.title()) # Hi My Initials Are Jah
But yes, otherwise .title() is a simpler way to do what was described in the article. Thanks for the contribution!!