所以我試圖讓這個程序會要求用戶輸入並將值存儲在數組/列表中。
然後當輸入一個空白行時,它會告訴用戶有多少這些值是唯一的。
我爲了現實生活的原因而不是將它作爲問題設置來構建。如何在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:
..和這就是全部到目前爲止,我已經得到了。
我不確定如何計算列表中單詞的唯一數量?
如果有人可以發佈解決方案,以便我可以從中學習,或至少告訴我它會是多麼棒,謝謝!
您可以修復縮進您的代碼示例,它在Python重要! – codebox
你已經刪除了你的代碼,而不是編輯它,使它可讀!代碼有幫助很多... – Hbcdev
@codebox抱歉現在會做 –