利用字典的?key?和?value
#?-*-?coding:?utf-8?-*-__author__?=?'lpe234'
__date__?=?'2014-11-15'
en_to_zh?=?{
'apple':?'蘋果',
'banana':?'香蕉',
}
def?main():
while?True:
en_str?=?raw_input('輸入英文單詞?>?')
en_str?=?en_str.lower()
if?en_str?in?en_to_zh:
print?en_to_zh[en_str]
else:
print?'暫未收錄!'
if?__name__?==?'__main__':
main()