python3中矩阵如何表示?

python中表示矩阵的方法:

python中可以利用列表中夹带列表形式表示。

示例:(表示下列矩阵)

使用下面的代码即可:

count = 1
a = []
for i in range(0, 3):
    tmp = []
    for j in range(0, 3):
        tmp.append(count)
        count += 1
    a.append(tmp)
print a

结果:

[[1, 2, 3], [4, 5, 6], [7, 8, 9]]

更多Python知识请关注云海天python教程网。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python3中矩阵如何表示?