Python字符遍历的艺术
程序员文章站
2022-04-08 17:25:04
比如,将一个字符串转换为一个字符数组: thelist = list(thestring) 同时,我们可以方便的通过for语句进行遍历: for c in thestrin...
比如,将一个字符串转换为一个字符数组:
thelist = list(thestring)
同时,我们可以方便的通过for语句进行遍历:
for c in thestring:
do_something_with(c)
甚者,使用这样的语句:
result = [do_something_with(c) for c in thestring if c == 'x']
同时,还可以使用map语句,下面,我们开始上菜吧!传说中有一个神奇的字符串,被病毒感染了,被病毒附上了许多x字符,你将设计一个引擎,把病毒x出去,把我们神奇的字符串输出来。程序如下:
thestring = 'ix lixkxex xpxytxhxonx !'
def printengine(c):
if c != 'x':
print c,
map(printengine, thestring)
输出结果:
i like python !
thelist = list(thestring)
同时,我们可以方便的通过for语句进行遍历:
for c in thestring:
do_something_with(c)
甚者,使用这样的语句:
result = [do_something_with(c) for c in thestring if c == 'x']
同时,还可以使用map语句,下面,我们开始上菜吧!传说中有一个神奇的字符串,被病毒感染了,被病毒附上了许多x字符,你将设计一个引擎,把病毒x出去,把我们神奇的字符串输出来。程序如下:
thestring = 'ix lixkxex xpxytxhxonx !'
def printengine(c):
if c != 'x':
print c,
map(printengine, thestring)
输出结果:
i like python !