>  Q&A  >  본문

关于python getattr()函数使用疑问。

我在创建一个类Game 并创建一个属性start,创建一个实例后执行play()方法,使用getattr函数
获取start属性值,也就是要执行的函数名,运行提示getattr 第二个参数(属性名)必须是str类型,但是我创建实例传入的参数"testroom"就是字符串啊,只不过是赋值给变量next了

class Game(object):

    def __init__(self, start):
        self.start = start
        
    def play(self):
        next = self.start
        while True:
            print "\n----------"
            room = getattr(self, next)
            next = room()
    
    def testroom(self):
        pass
a_game = Game("testroom")
a_game.play()

这是笨办法学Python 上的第42个习题,我按书上敲的,不知道哪里出错了,求指点。

PHPzPHPz2766일 전567

모든 응답(2)나는 대답할 것이다

  • PHPz

    PHPz2017-04-17 17:36:18

    으아악

    처음 실행은 문제없으나
    next = room() 실행 후 testroom()에는 반환 값이 없으므로 next에는 빈 값이 할당되어 계속 getattr(self, next) getattr(가 되었습니다. 본인,없음)

    회신하다
    0
  • ringa_lee

    ringa_lee2017-04-17 17:36:18

    첫 번째 getattr 실행이 성공했는데 next = room() 때문에 다음이 문자열이 아니어서...

    회신하다
    0
  • 취소회신하다