1
N = int(input())
list = []
while(N>0):
n = int(input())
list.append(n)
N = N-1
Q = int(input())
while(Q>0):
check = int(input())
count = list.count(check)
if(count==0):
print("NOT PRESENT")
else:
print(count)
Q = Q-1
以上是我在hackerearth中編寫的代碼。我作爲運行時錯誤得到響應。但是,當我在我的Ubuntu的Python控制檯嘗試它的作品完美HackerEarth運行時錯誤 - Python 3中的NZEC
我不知道什麼HackerEarth ......但如果他們的解釋是蟒蛇2(而不是python3)你可以嘗試使用的raw_input'來代替'輸入()'()'。 –
錯誤是什麼? – Arun