Please help me to use python to write this code and this pro
Please help me to use python to write this code, and this problem have a examle code, please only give me correct code, thanks.
Solution
implement this function in your code to remove vowels from given string. def remove_vowel(data): for s in data: if s.lower() in [\'a\',\'e\',\'i\',\'o\',\'u\']: data.replace(s,\"\") return data
