Posts by Pedro Santana • 1 point
2 posts
-
0
votes1
answer86
viewsQ: Matrix input reading in python
I’m wondering how to create an array in python, but the input would be the whole matrix. I tried to make: matrix=[] for r in range(5): row=[] for c in range(5): row.append(input().split())…
-
0
votes1
answer94
viewsQ: Input of various inputs
I do not know how to solve this problem, the problem asks me between several inputs at once. example: 10 12 10 14 100 200 And after that give the difference between them line by line, I was trying…