2012年3月1日木曜日

開発環境

『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7)のVI部(クラスとオブジェクト指向プログラミング)のまとめ演習の練習問題9(「死んだオウム」スケッチ(芝居のシミュレーション))を解いてみる。

9.

コード(TextWrangler)

#!/usr/bin/env python
#encoding: utf-8

class Scene:
 def __init__(self):
  self.customer = Customer()
  self.clerk = Clerk()
  self.parrot = Parrot()
 def action(self):
  self.customer.line()
  self.clerk.line()
  self.parrot.line()

class Super:
 def line(self):
  print self.says()
 
class Customer(Super):
 def says(self):
  return "customer: \'that's one ex-bird!\""

class Clerk(Super):
 def says(self):
  return "clerk: \"no it isn't...\""

class Parrot(Super):
 def says(self):
  return "parrot: None"

if __name__ == '__main__':
 Scene().action()

入出力結果(Terminal)

$ ./python_program.py
customer: 'that's one ex-bird!"
clerk: "no it isn't..."
parrot: None
$

0 コメント:

コメントを投稿