0
我知道這可能非常簡單,我忘了一些東西,但我不記得如何打印字典的關鍵。具體問題是我有一個動物的部分可以攻擊的字典,值是用來攻擊,如動詞:{「牙齒」:「咬」}如何打印字典的鍵但不是它的值? [python]
它看起來像這樣:
attack_part = random.choice(list(self.attacking_parts))
print('The', self.name, self.attacking_parts[attack_part], 'you with their', self.attacking_parts.keys() + '!')
但是,當我用這個發生的事情是:在你的代碼
The bear scratches you with their scrathes!