Hey, i need to enter words to the list then count them an and print how many items in that list without counting duplicates

Joe janf :

You are learning a new language, and are having a competition to see how many unique words you know in it to test your vocabulary learning.

Write a program where you can enter one word at a time, and be told how many unique words you have entered. You should not count duplicates. The program should stop asking for more words when you enter a blank line.

For example:

Word: Chat Word: Chien Word: Chat Word: Escargot Word: You know 3 unique word(s)! ​ and

Word: Katze Word: Hund Word: Maus Word: Papagei Word: Schlange Word: You know 5 unique word(s)!

Kurosh Ghanizadeh :

use sets and then take the length of the set like bellow:

len(set(your_list))

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=33327&siteId=1