Python 列印矩陣,內容為c+r

加入好友
加入社群
Python 列印矩陣,內容為c+r - 儲蓄保險王

#Python 列印矩陣,內容為c+r

def compute(lt):
for r in range(rows):
for c in range(cols):
print(“%3d”%lt[r][c],end=””)
print()
#跟內層的迴圈同縮排

rows=3
cols=3
lt=[]
for r in range(rows):
lt.append([])
for c in range(cols):
lt[r].append(c+r)

compute(lt)

Python 列印矩陣,內容為c+r - 儲蓄保險王

 

加入好友
加入社群
Python 列印矩陣,內容為c+r - 儲蓄保險王

儲蓄保險王

儲蓄險是板主最喜愛的儲蓄工具,最喜愛的投資理財工具則是ETF,最喜愛的省錢工具則是信用卡

You may also like...

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *