码迷,mamicode.com
首页 > 编程语言 > 详细

python通过点操作符和reduce遍历对象的属性的代码

时间:2019-07-25 09:23:31      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:reduce   obj   child   name   应该   turn   oca   码农   get   

如下的资料是关于python通过点操作符和reduce遍历对象的属性的内容,应该能对码农们有较大用途。

class Klass(object):

    def __getattr__(self, name):
        """
        Locate the function with the dotted
        attribute.
        """
        def traverse(parent, child):
            if instance(parent, str):
                parent = getattr(self, parent)
            return getattr(parent, child)
        return reduce(traverse, name.split(‘.‘))

python通过点操作符和reduce遍历对象的属性的代码

标签:reduce   obj   child   name   应该   turn   oca   码农   get   

原文地址:https://blog.51cto.com/14397541/2423292

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!