[python] 목록 내에서 고유 한 값을 계산하는 방법

그래서 사용자에게 입력을 요청하고 값을 배열 / 목록에 저장하는이 프로그램을 만들려고합니다.
그런 다음 빈 줄을 입력하면 해당 값 중 몇 개가 고유한지 사용자에게 알려줍니다.
나는 이것을 문제 세트가 아닌 실제 삶의 이유로 구축하고 있습니다.

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 in list
while ipta:
  ipta = raw_input("Word: ")
  new_words.append(input1)
  counter = counter + 1

for p in uniquewords:

.. 그게 내가 지금까지 얻은 전부입니다.
목록에서 고유 한 단어 수를 계산하는 방법을 잘 모르겠습니까?
누군가가 해결책을 게시하여 내가 배울 수 있거나 적어도 그것이 얼마나 좋을지 보여줄 수 있다면 감사합니다!



답변

또한 collections.Counter 를 사용 하여 코드를 리팩터링하십시오.

from collections import Counter

words = ['a', 'b', 'c', 'a']

Counter(words).keys() # equals to list(set(words))
Counter(words).values() # counts the elements' frequency

산출:

['a', 'c', 'b']
[2, 1, 1]


답변

세트 를 사용하여 중복을 제거한 다음 len 함수를 사용하여 세트 의 요소를 계산할 수 있습니다.

len(set(new_words))


답변

values, counts = np.unique(words, return_counts=True)


답변

세트 사용 :

words = ['a', 'b', 'c', 'a']
unique_words = set(words)             # == set(['a', 'b', 'c'])
unique_word_count = len(unique_words) # == 3

이것으로 무장하면 솔루션은 다음과 같이 간단 할 수 있습니다.

words = []
ipta = raw_input("Word: ")

while ipta:
  words.append(ipta)
  ipta = raw_input("Word: ")

unique_word_count = len(set(words))

print "There are %d unique words!" % unique_word_count


답변

aa="XXYYYSBAA"
bb=dict(zip(list(aa),[list(aa).count(i) for i in list(aa)]))
print(bb)
# output:
# {'X': 2, 'Y': 3, 'S': 1, 'B': 1, 'A': 2}


답변

ndarray에는 unique 라는 numpy 메서드가 있습니다 .

np.unique(array_name)

예 :

>>> np.unique([1, 1, 2, 2, 3, 3])
array([1, 2, 3])
>>> a = np.array([[1, 1], [2, 3]])
>>> np.unique(a)
array([1, 2, 3])

시리즈의 경우 value_counts () 함수 호출이 있습니다 .

Series_name.value_counts()


답변

ipta = raw_input("Word: ") ## asks for input
words = [] ## creates list
unique_words = set(words)