请用一段Python循环代码完成以下程序功能
print(list(map(lambda x,y: (x**y,x+y), [2,4,6],[3,2,1])))
2,4,6 3,2,1
[(8, 5), (16, 6), (6, 7)]
ZJUT