¡@

Home 

python Programming Glossary: isvowel

str.replace issue

http://stackoverflow.com/questions/15456639/str-replace-issue

remove vowels from a user inputted string of text. def isVowel text if text in a e i o u A E I O U return True def withoutVowels.. O U return True def withoutVowels text for char in text if isVowel True text text.replace char return text The isVowel function.. if isVowel True text text.replace char return text The isVowel function is working fine however it does not seem to evaluate..