美文网首页我的python学习道路
python 中新建一个二维矩阵的方法

python 中新建一个二维矩阵的方法

作者: fred_33c7 | 来源:发表于2018-07-12 15:19 被阅读1次
    • 怎么样新建一个二维矩阵
      Matrix = [][]或者Matrix = [5][5]都是不行的
    #Creates a list containing 5 lists, each of 8 items, all set to 0
    w, h = 8, 5;
    Matrix = [[0 for x in range(w)] for y in range(h)] 
    

    相关文章

      网友评论

        本文标题:python 中新建一个二维矩阵的方法

        本文链接:https://www.haomeiwen.com/subject/jahrpftx.html