[ create a new paste ] login | about

Link: http://codepad.org/usWzrc9m    [ raw code | output | fork ]

jonlyles - Python, pasted on Nov 9:
1
2
3
4
5
6
7
8
def del_vowels(text):
  no_vowels = ""
  for i in text:
    if i not in "aeiou":
      no_vowels = no_vowels + i
  return no_vowels

print del_vowels("jeep")


Output:
1
jp


Create a new paste based on this one


Comments: