python title()的用法
In [45]: str = "this is string example....wow!!!"In [46]: str.title()- Out[46]: 'This Is String Example....Wow!!!'
In [47]: str.title().istitle()Out[47]: True
In [45]: str = "this is string example....wow!!!"In [46]: str.title()- Out[46]: 'This Is String Example....Wow!!!'
In [47]: str.title().istitle()Out[47]: True