手机
当前位置:查字典教程网 >脚本专栏 >python >python过滤字符串中不属于指定集合中字符的类实例
python过滤字符串中不属于指定集合中字符的类实例
摘要:本文实例讲述了python过滤字符串中不属于指定集合中字符的类。分享给大家供大家参考。具体如下:#-*-coding:utf-8-*-imp...

本文实例讲述了python过滤字符串中不属于指定集合中字符的类。分享给大家供大家参考。具体如下:

# -*- coding: utf-8 -*- import sets class Keeper(object): def __init__(self, keep): self.keep = sets.Set(map(ord, keep)) def __getitem__(self, n): if n not in self.keep: return None return unichr(n) def __call__(self, s): return s.translate(self) makefilter = Keeper if __name__ == '__main__': just_vowels = makefilter('aeiouy') print just_vowels(u'four score and seven years ago') # 输出: ouoeaeeyeaao print just_vowels(u'tiger, tiger burning bright') # 输出: ieieuii

希望本文所述对大家的Python程序设计有所帮助。

【python过滤字符串中不属于指定集合中字符的类实例】相关文章:

python 将字符串转换成字典dict

python二叉树的实现实例

Python中针对函数处理的特殊方法

Python实现端口复用实例代码

python 中文字符串的处理实现代码

python使用正则搜索字符串或文件中的浮点数代码实例

python的绘图工具matplotlib使用实例

Python 过滤字符串的技巧,map与itertools.imap

python单链表实现代码实例

python迭代器的使用方法实例

精品推荐
分类导航