思路:为了避免判断代码冗余让人心态炸裂,使用mu和nu代表行和列的下标范围 while True: try: m, n = map(int, input().split(" ")) x1, y1, x2, y2 = map(int, input().split(" ")) x, y = int(input()), int(input()) x3, y3 = map(int, input().split(" ")) mu, nu = [i for i in range(m)], [i for i in ra...