그래서 사용자에게 입력을 요청하고 값을 배열 / 목록에 저장하는이 프로그램을 만들려고합니다.
그런 다음 빈 줄을 입력하면 해당 값 중 몇 개가 고유한지 사용자에게 알려줍니다.
나는 이것을 문제 세트가 아닌 실제 삶의 이유로 구축하고 있습니다.
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:
.. 그게 내가 지금까지 얻은 전부입니다.
목록에서 고유 한 단어 수를 계산하는 방법을 잘 모르겠습니까?
누군가가 해결책을 게시하여 내가 배울 수 있거나 적어도 그것이 얼마나 좋을지 보여줄 수 있다면 감사합니다!