Tag: 循环是

如何在Python中对数组中的唯一值进行计数?

所以我试图让这个程序,将要求用户input并将值存储在数组/列表中。 然后当input一个空白行时,它会告诉用户有多less这些值是唯一的。 我是build立在真实生活的原因,而不是作为一个问题集。 enter: happy enter: rofl enter: happy enter: mpg8 enter: Cpp enter: Cpp enter: There are 4 unique words! 我的代码如下: # ask for input ipta = raw_input("Word: ") # create list uniquewords = [] counter = 0 uniquewords.append(ipta) a = 0 # loop thingy # while loop to ask for input and append […]