Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
T_re_nslate solution in Uncategorized category for Bird Language by Tical_1000
import re
import string
VOWELS = "aeiouy"
def translation(phrase):
consonants = [letter for letter in string.ascii_lowercase if letter not in VOWELS]
for consonant in consonants:
phrase = re.sub(consonant + r"[a-z]", consonant, phrase)
for vowel in VOWELS:
phrase = re.sub(vowel+r"{3}", vowel, phrase)
return phrase
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert translation("hieeelalaooo") == "hello", "Hi!"
assert translation("hoooowe yyyooouuu duoooiiine") == "how you doin", "Joey?"
assert translation("aaa bo cy da eee fe") == "a b c d e f", "Alphabet"
assert translation("sooooso aaaaaaaaa") == "sos aaa", "Mayday, mayday"
Feb. 11, 2019