我知道有類似的問題,但沒有人對這種特定類型的格式有答案。對于codeforces問題,我需要這樣輸入矩陣:0 0 0 0 00 0 0 0 10 0 0 0 00 0 0 0 00 0 0 0 0我想將它存儲為一個矩陣,其中 m[i][j] 與上面的輸入完全相同。例如,我想將輸入存儲為一個矩陣,其中 [4][1] 與 1 相關。如何在 python3 中獲取此輸入?如果有幫助,我在此處附上了問題:https ://codeforces.com/problemset/problem/263/A 。唯一需要注意的是矩陣總是 5x5。
1 回答

MYYA
TA貢獻1868條經(jīng)驗 獲得超4個贊
利用:
N = 5 # Shape of the square matrix(NxN)
matrix = [list(map(int, input().split())) for _ in range(N)]
print(matrix)
print("Element at 2 row and 5 column is:", matrix[1][4])
輸出:
[[0, 0, 0, 0, 0],
[0, 0, 0, 0, 1],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0]]
Element at 2 row and 5 column is: 1
添加回答
舉報
0/150
提交
取消