標籤:

Python 有一個東西叫list comprehensions.

回答這個問題zhihu.com/question/4923

python 怎麼創建一個function,接收一整數n,得到一n*n 矩陣,每行的數是前一行數字加10

例子:

print (mat (4))

答案[[0, 1, 2, 3], [10, 11, 12, 13], [20, 21, 22, 23], [30, 31, 32, 33]]

下面二段代碼都用到了list comprehensions 。

list comprehensions 的知識請看。docs.python.org/3/tutor

代碼1:

代碼2:

代碼3:

推薦閱讀:

TAG:Python |