python利用元组、字典可以表示坐标增减,具体做法为:defchange_directions(e):#e表示移动方向,list类型moves={"up":(0,1),"down":(0,-1),"right":(1,0),"left":...