does python find errors where there are none? [closed]

You try to assign a value to u1[...] without even having created u1.

You should init u1 before trying to init its elements.

Leave a Comment