|
发表于 2018-12-13 06:12:47
|
显示全部楼层
origin = [0,0]
legal_x = [-100, 100]
legal_y = [-100, 100]
def create(position_x=0, position_y=0):
def moving(direction, step):
nonlocal position_x,position_y
new_x = position_x + direction[0] * step
new_y = position_y + direction[1] * step
if new_x < legal_x[0]:
position_x = legal_x[0]#超出边界无法前进
elif new_x > legal_x[1]:
position_x = legal_x[1]#超出边界无法前进
else:
position_x = new_x
if new_y < legal_y[0]:
position_y = legal_y[0]#超出边界无法前进
elif new_y > legal_y[1]:
position_y = legal_y[1]#超出边界无法前进
else:
position_y = new_y
return position_x, position_y
return moving
move = create()
print('向上移动10步', move([0,1],10))
print('向右移动130步', move([1,0],10))
print('向左下移动100步', move([-1,-1],100))
print('向左上动10步', move([-1,1],10))
print('向左移动10步', move([-1,0],10)) |
|