+ 1
Checking 2 matrix can be Multiply or not - ERROR
Dear Friends Would you let me know why I receive ERROR ? CODE: https://code.sololearn.com/ceCJB7Ku0uj1/#py ERROR: https://www.dropbox.com/s/898qgzye6z9515r/Untitled.png?dl=0
7 Respostas
+ 1
all your lines are indented which the shouldnt be.
Also its kind of unclear what the code is supposed to accompish. You are storing the matrixes as string and you have i variable implemented before the loop and you are checking if first letter in the string is equal to integer 0
+ 1
I modified extra spaces in each line also added a missing = to line 9 but received new ERROR
+ 1
can you copy paste the error?
0
I modified again , removes () from a ([0]) to be a[0]
new ERROR
https://www.dropbox.com/s/liruxvwlrdgvx0c/Untitled.jpg?dl=0
0
well as i mentioned before you are attepting to work with strings and not lists like you probably should. Also I can't understand what you are trying to accomplish since i cant understand the language in the comments
0
I found the right code
https://code.sololearn.com/cksr0eLD8HtW/#py
One of the wrong codes was because I wanted to replace "len" with another way to find length of string
0
The goal of this code is to find out whether 2 matrix can be multiply or not
The mathematical rule is columns of matrix "a" should be equal to rows of matrix "b"