我想编写一个函数,将用户插入到函数plays
中的参数的所有字符串保存到函数move()
中的字符串undo_str
中undo()
。我在这里想念什么?
class Sokoban:
def __init__(self, board):
self.board = board.copy()
def move(self, plays):
............
def undo(self):
undo_str=""
undo_str=undo_str[:]+plays
self.undo=undo_str[:-1]