内包表記 / 1 行の行列を 1 列の行列にする

# 1 行の行列を 1 列の行列にする。
a=[0, 10, "aa", -3, 3.65]
b=[[v] for v in a]

print(a)
print(b)

f:id:ti-nspire:20180112175607p:plain