這是我的代碼:如何打印正確的事「一」時循環「B」
a ={
'power':'力',
'magic':'魔',
'skill':'技'
}
b =['power','wwwww']
for i in b :
#print getattr(a,i)
print a[i] or 'default string'
,並顯示錯誤:
Traceback (most recent call last):
File "a.py", line 13, in <module>
print a[i] or 'default string'
KeyError: 'wwwww'
如何打印正確的事情「A」當環 'b',並顯示在 'A' 不要有它
感謝