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 there no string method to do capwords so that it accomodates acronyms?
|
This is good:
This is not so good:
Is there no string method to do capwords so that it accomodates acronyms?
| |||||
feedback
|
|
This might work:
Here is a test:
| ||||
|
feedback
|
|
Even if there were such a function, what would it do when asked to process "IRS"? Even the IRS call themselves "IRS" with no dots. | |||
feedback
|
|
I just used a list comprehension: [ ".".join( [ string.capwords(l) for l in entry.split(".") ] ) for entry in original_list ] | |||
|
feedback
|