免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1621 | 回复: 2
打印 上一主题 下一主题

新手请教,python cookbook代码解读 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-04-11 11:04 |只看该作者 |倒序浏览
其中,
           str_meth = getattr(str, name) 定义函数是这样,为什么在后面可以
return str_meth(self._lowered, other, *args) 呢?不是只能接受两个参数么?谢谢




以下是python cookbook上的1.24代码:

class iStr(str):
    """
    Case insensitive string class.
    Behaves just like str, except that all comparisons and lookups
    are case insensitive.
    """
    def __init__(self, *args):
        self._lowered = str.lower(self)
    def __repr__(self):
        return '%s(%s)' % (type(self).__name__, str.__repr__(self))
    def __hash__(self):
        return hash(self._lowered)
    def lower(self):
        return self._lowered

def _make_case_insensitive(name):
    ''' wrap one method of str into an iStr one, case-insensitive '''
    str_meth = getattr(str, name)
    def x(self, other, *args):
        ''' try lowercasing 'other', which is typically a string, but
            be prepared to use it as-is if lowering gives problems,
            since strings CAN be correctly compared with non-strings.
        '''
        try: other = other.lower()
        except (TypeError, AttributeError, ValueError): pass
        return str_meth(self._lowered, other, *args)
    # in Python 2.4, only, add the statement: x.func_name = name
    setattr(iStr, name, x)

# apply the _make_case_insensitive function to specified methods
for name in 'eq lt le gt gt ne cmp contains'.split():
    _make_case_insensitive('__%s__' % name)
for name in 'count endswith find index rfind rindex startswith'.split():
    _make_case_insensitive(name)
# note that we don't modify methods 'replace', 'split', 'strip', ...
# of course, you can add modifications to them, too, if you prefer that.
del _make_case_insensitive    # remove helper function, not needed any more

论坛徽章:
0
2 [报告]
发表于 2012-04-11 22:38 |只看该作者
没有人回答问题啊.....

论坛徽章:
0
3 [报告]
发表于 2012-04-11 23:15 |只看该作者
本帖最后由 3227049 于 2012-04-11 23:16 编辑

别看那段, 看下面的

import string  

replace=getattr(string,'replace') #: -> string.replace(s, old, new, maxreplace=-1)

print replace("333","3","1")  #: output 111

print replace("333","3","1",1)  #: output 133

args = [ "3", "1", 1 ]  #: 见上

print replace("333",*args) #:output 133

args = ["333","3", "1", 1 ]

print replace(*args) #: 同样见上
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP