填空题

已知有列表x=[[1,2,3],[4,5,6]],那么表达式[[row[i]forrowinx]foriinrange(len(x[0]))]的值为()。

【参考答案】

[[1, 4], [2, 5], [3, 6]]