Skip to content

Instantly share code, notes, and snippets.

View krystinashveda's full-sized avatar

Krystina Shveda krystinashveda

  • London, UK
View GitHub Profile
def count_words():
my_list = []
while True:
word = input("Type a Russian word or 'finish': ")
if word != "finish":
my_list.append(word)
continue
else: