Skip to content

Instantly share code, notes, and snippets.

# practicum 13
# Shatilov artem
# 1
"""
def count_letters(s):
vowels = "аеёиоуыэюяАЕЁИОУЫЭЮЯ"
consonants = "бвгджзйклмнпрстфхцчшщБВГДЖЗЙКЛМНПРСТФХЦЧШЩ"
v = 0
c = 0