首页 > 代码库 > Python 字符串大小写操作

Python 字符串大小写操作

#coding=utf-8#python中字符串的操作#  字符串的大小写s=hello_wOrld_oF_youupper_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

Python 字符串大小写操作