Posted in Python onMay 21, 2015
目的
对字符串的每个字符进行处理,其实每个字符(Char)就是一个长度为1的字符串。
方法
1.使用内建函数list()
>>> A_string='Python' >>> char_list=list(A_string) >>> char_list ['P', 'y', 't', 'h', 'o', 'n']
2.使用for语句对字符串进行遍历
>>> for c in A_string: c.upper() 'P' 'Y' 'T' 'H' 'O' 'N'
3.列表解析
>>> char_list=[c.title() for c in A_string] >>> char_list ['P', 'Y', 'T', 'H', 'O', 'N']
4.map()函数
>>> map((lambda c:c.lower()),A_string) ['p', 'y', 't', 'h', 'o', 'n']
5.使用集合set()
B_string='Hello,World' >>> set(A_string).difference(set(B_string)) set(['y', 'h', 't', 'P', 'n'])
Python中每次处理一个字符的5种方法
- Author -
junjie声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@