numList = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] # 原始列表 n = int(input()) # 矩阵个数 """ for nums in numList:遍历出numList的每一个子列表 [num * n for num in nums]:子列表保持列表形式,并对每个子列表中的值...