Tagged Questions
0
votes
4answers
1k views
is there a string method to capitalize acronyms in python?
This is good:
import string
string.capwords("proper name")
'Proper Name'
This is not so good:
string.capwords("I.R.S")
'I.r.s'
Is ...