这与hackerrank中的问题有关:https://www.hackerrank.com/challenges/grid-challenge/problem
尝试读入以下矩阵作为输入
ebacd
fghij
olmkn
trpqs
xywuv
我使用了这段代码:
grid = [[k for k in input().strip()]for l in range(nn)]
其中nn是方阵的维数
但是我收到以下错误[运行时错误]
Traceback (most recent call last):
File "solution.py", line 9, in <module>
for k in input().strip():
File "<string>", line 1, in <module>
NameError: name 'eabcd' is not defined
问题:如何解决错误,或者更好 如何输入给定的矩阵?