Python:如何避免给定输入字符串的运行时错误?

时间:2019-12-23 07:10:17

标签: python python-3.x permutation itertools

如何避免以下代码段出现运行时错误?

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

0 个答案:

没有答案