Python - Programming Language
This course covers the basics of programming in Python. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Building A Translator

Lesson 25
Author : 🦒
Last Updated : October, 2017


Code

Copydef translate(phrase):
     translation = ""
     for letter in phrase:
          if letter.lower() in "aeiou":
               if letter.isupper():
                    translation = translation + "G"
               else:
                    translation = translation + "g"
          else:
               translation = translation + letter
     return translation