def final_position(s): # 初始位置 x, y = 0, 0 # 按';'分割指令 commands = s.split(';') # 方向映射 direction_map = { 'A': (-1, 0), # 左移 'D': (1, 0), # 右移 'W': (0, 1), # 上移 'S': (0, -1) # 下移 } # 遍历每个指令 for command in commands: # 忽略空指...