lis = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
num = int(input())
lis = list(map(lambda x: list(map(lambda i: i * num, x)), lis))
print(lis)

嵌了两层map......