Ответы
Ответ дал:
0
string = 'New Delhi New York Paris Prague'
unique_words = []
for word in string.split():
if word not in unique_words:
unique_words.append(word)
print(len(unique_words))
Вас заинтересует
3 года назад
8 лет назад