當我執行這個代碼 - 類型錯誤有一個錯誤:「詮釋」對象不是可迭代如何從列表中找到最大和平方,最後拿模
我將如何解決? (Python 3中)
t,n=input().split() #t refers to number of lists
l=[0]*7 #initialized list to 0 as maximum 7 elements are possible in list
s=0
for i in range(0,int(t)):
l[i]=list(map(int,input().split())) #take inputs for t list
for j in l: #to find max in each list
s=s+(max(j)*max(j))
print(s%n)
Traceback (most recent call last):
File "solution.py", line 7, in
s=s+(max(j)*max(j))
TypeError: 'int' object is not iterable
inputs:
3 1000
2 5 4
3 7 8 9
5 5 7 8 9 10
output:
206
請編輯錯誤的完整文本,包括回溯,到你的問題。 –
吧我最後的評論。追溯請。並具有你的變量,將有助於有意義的名字...... –
你能提供上述代碼樣本輸入和輸出? – arsho