Board logo

標題: 二維串列 [打印本頁]

作者: tonyh    時間: 2022-4-30 16:53     標題: 二維串列

  1. # 3x4
  2. list=[[1,2,3,4],[5,6,7,8],[9,10,11,12]]
  3. for i in range(0,3):
  4.     for j in range(0,4):
  5.         print("list[%d][%d]=%d"%(i,j,list[i][j]))
複製代碼

作者: 郭詩瑜    時間: 2022-4-30 17:21

  1. list=[[1,2,3,4],[5,6,7,8],[9,10,11,12]]
  2. for i in range(0,3):
  3.     for j in range(0,4):
  4.         print(f"list[{i}][{j}] = {list[i][j]}")
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2