# -*- coding: utf-8 -*-
'''Please let code becomes much simpler and easier to maintain.
'''
def process(pet, action, target):
'''
>>> process('dog', 'eat', 'bone')
ok
>>> process('dog', 'eat', 'ball')
faild
>>> process('dog', 'play', 'ball')
yes
>>> process('dog', 'play', 'bone')
ok
>>> process('dolphin', 'play', 'ball')
good
>>> process('dolphin', 'play', 'bone')
faild
>>> process('dolphin', 'eat', 'bone')
faild
>>> process('dog', 'play', 'mouse')
opps
>>> process('cat', 'catch', 'mouse')
Traceback (most recent call last):
...
Exception
'''
if pet == 'dog':
if action == 'eat':
if target == 'bone':
print 'ok'
elif target == 'ball':
print 'faild'
else:
raise Exception()
elif action == 'play':
if target == 'bone':
print 'ok'
elif target == 'ball':
print 'yes'
else:
print 'opps'
else:
raise Exception()
elif pet == 'dolphin':
if action == 'eat':
if target == 'bone':
print 'faild'
elif target == 'ball':
print 'faild'
else:
raise Exception()
elif action == 'play':
if target == 'bone':
print 'faild'
elif target == 'ball':
print 'good'
else:
raise Exception()
else:
raise Exception()
else:
raise Exception()
if __name__ == '__main__':
import doctest
doctest.testmod()
这是一段代码,它写的很丑,但不容易维护,代码不容易扩展,增加了一种新的宠物,动作,目标,需要写很多的,如何修改一下,改变示例的样子简单,很容易修改和扩展呢?
上面是一些示例代码,但是写得很丑,不容易维护,也不容易扩展——添加一个新的宠物,动作,目标。我需要写很多代码;如何重构它,使它看起来很简单,很容易修改和扩展?