通过计算坐标,按题目的蛇形要求向二维数组中添加元素,最后输出二维数组。 n = int(input()) x, y = 0, 0 out = 0 result = [[0] * n for _ in range(n)] while True: out += 1 result[x][y] = ...