Python 有一個東西叫list comprehensions.
01-27
回答這個問題https://www.zhihu.com/question/49232861
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 的知識請看。https://docs.python.org/3/tutorial/datastructures.html#list-comprehensions
代碼1:
代碼3:
推薦閱讀:
TAG:Python |