这是到目前为止的代码:
class Player:
hand = []
def take(self, card):
hand.append(card)
这是我调用该函数时的错误:
hand.append(card)
NameError: global name 'hand' is not defined
我试过让它像这样全球化:
class Player:
hand = []
def take(self, card):
global hand
hand.append(card)
它没有帮助。