import sys #使用深度优先搜索算法,可以搜索出所有路径. #向4个方向查找能否通行 #L是迷宫, stepL是路径 def dfs(L, x, y, stepL): #定义4个方向,右,下,左,上 nexts = [[0,1], [1,0], [0,-1], [-1, 0]] # print(stepL) #到终点了 if x == len(L) - 1 and y == len(L[0]) - 1: # print(stepL) for s in stepL: print("(...