This question already has answers here:
How do I count unique values inside a list
(12个答案)
6年前关闭。
我对蟒蛇还不熟悉。我有一张单子,上面有重复的条目。他们有办法计算出唯一字符串的数目吗?当做,
input1 = input("Name ")
input2 = []
input2.append(input1)
while input1:
  input1 = input("Name ")
  input2.append(input1)

我只想打印出输入的唯一名称的数目。谢谢!

最佳答案

这个怎么样:

len(set(input2))

len(set(n[5:] for n in input2))

关于python - 计算列表中唯一字符串的数量? Python 3 ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18652026/

10-09 14:12