我正在尝试在Python中的所有字符串中找到通用字符。我收到NZEC错误。下面的代码在我的PC上运行正常,但在Online IDE中导致错误。我尝试使用raw_input()
而不是input()
,但是仍然遇到相同的错误。
我的代码中什么导致此错误?
try:
t=int(raw_input())
for i in range(t):
n=int(raw_input())
l=[]
a={}
for j in range(n):
k=raw_input()
d={}
for l in k:
if l in d:
d[l]+=1
else:
d[l]=1
if j==0:
a=d
f=[]
for p in a:
if p in d:
f.append(p)
else:
continue
print(len(f))
输入:
2
3
abcdfg
bcbd
bcg
3
qui
fox
klp
预期输出:
2
0