如何将 Python 元组转换为二维表格?
如果你可以使用如 numpy 之类的数字程序库,你应当使用 reshape 方法,将元组重组成多维数组。
示例
import numpy data = numpy.array(range(1,10)) data.reshape([3,3]) print(data)
输出
将以 - 输出
array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
示例
如果你更喜欢使用纯 Python 来进行操作,你可以使用列表推理 −
data = tuple(range(1, 10)) table = tuple(data[n:n+3] for n in xrange(0,len(data),3)) print(table)
输出
将以 - 输出
((1, 2, 3), (4, 5, 6), (7, 8, 9))
广告