Python 字符串大小写操作
#coding=utf-8 #python中字符串的操作 # 字符串的大小写 s=‘hello_wOrld_oF_you‘ upper_str = s.upper() print(‘全部大写: ‘,upper_str) lower_str = s.lower() print(‘全部小写: ‘,lower_str) Capitallize_str = s.capitalize() print(‘大写首字母: ‘,Capitallize_str) title_str=s.title() print(‘标题似大写:‘,title_str) up_str1=s[0].upper()+s[1:].lower() print(‘只大写某个字母: ‘,up_str1) # 字符串分割 split_str=s.split(‘_‘,2) print(‘把对象按照提示的符号进行提示次数的分割: ‘,split_str) sub_str=‘,‘.join(s.split(‘_‘)) print(‘把对象按照提示的符号进行分割,并按照与新字符连接: ‘,sub_str) b=s.join(‘abc‘) print (b)
部分内容参考至网络,更详细使用请参考:
http://www.cnblogs.com/SunWentao/archive/2008/06/19/1225690.html
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。