如何避免以下代码段出现运行时错误?
s = input()
perms = [''.join(p) for p in permutations(s)]
for i in range(len(perms)):
perms[i]=perms[i][:2]
perms= list(set(perms))
print(len(perms))
输入为
Input1 : abbaababbaedbac
现在,我们需要通过删除每个字符串中的两个字符来找到给定字符串的所有可能组合,并且结果应为唯一字符串的长度,
Output1 : 67