I was skimming through Learn python the hard way and I have come across a code snippet like below. But I did not understand what's behind it, a function basically returns a string that which it's class has a function of the same name. And it can call the function properly.
Well, you will get what I mean when you look at the code.
Code:
from sys import exit
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 a1(self):
print "You are in a1, redirecting to a2"
return 'a2'
def a2(self):
print "You are in a2, exiting"
return 'death'
def death(self):
print 'You died'
exit(0)
a_game = Game('a1')
a_game.play()
getattr()function yet? What confused you about how that function works? – S.Lott Sep 2 '11 at 10:15