python3.x - 这段代码如何Pythonic?
黄舟
黄舟 2017-04-18 09:41:07
0
5
362
def remove_ignore_char(word):
    ignore_char = ['A', 'B', 'C',
           ]
    for char in ignore_char:
        if char in word:
            word = word.replace(char, '')
    return word
黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全部回覆(5)
洪涛
from functools import reduce

def remove_ignore_char(s):
    return reduce(lambda s, c: s.replace(c, ''), [s]+['A', 'B'])

python 2 則去掉第一行


import re
def remove_ignore_char(s):
    return re.sub('|'.join(['A', 'B']), '', s)
Ty80

此法最簡潔了吧~
python3

>>> 'ABCxAxBxFCABxCabc'.translate(''.maketrans('','','ABC'))
'xxxFxabc'
迷茫

雷雷

伊谢尔伦

雷雷

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板