diff --git a/Python/disemvowel.py b/Python/disemvowel.py new file mode 100644 index 0000000..78029ae --- /dev/null +++ b/Python/disemvowel.py @@ -0,0 +1,8 @@ +def disemvowel(string_): + vowels = ["a","A","e","E","i","I","u","U","o","O"] + + str = "" + for char in string_: + if not char in vowels: + str = str + char + return str