Mercurial > python-cmd2
annotate docs/pycon2010/pirate2.py @ 436:c4c35f002aef 0.6.4
to version 0.6.4
author | catherine.devlin@gmail.com |
---|---|
date | Thu, 25 Aug 2011 16:27:42 -0400 |
parents | 89e38f922c25 |
children |
rev | line source |
---|---|
337 | 1 from cmd import Cmd |
2 # using ``do_`` methods | |
3 | |
4 class Pirate(Cmd): | |
351 | 5 gold = 3 |
337 | 6 def do_loot(self, arg): |
351 | 7 'Seize booty from a passing ship.' |
337 | 8 self.gold += 1 |
374 | 9 print('Now we gots {0} doubloons' |
10 .format(self.gold)) | |
337 | 11 def do_drink(self, arg): |
12 'Drown your sorrrows in rrrum.' | |
13 self.gold -= 1 | |
374 | 14 print('Now we gots {0} doubloons' |
15 .format(self.gold)) | |
337 | 16 |
17 pirate = Pirate() | |
374 | 18 pirate.cmdloop() |