我有一个包含奇数个元素的列表。我想把它转换成特定的尺寸。
我的代码:
alist = ['a','b','c']
cols= 2
rows = int(len(alist)/cols)+1 # 2
anarray = np.array(alist.extend([np.nan]*((rows*cols)-len(months_list)))).reshape(rows,cols)
当前输出:
ValueError: cannot reshape array of size 1 into shape (2,2)
预期输出:
anarray = [['a','b'],['c',nan]]
翻翻过去那场雪
Qyouu
holdtom
相关分类