Question: def dsmvwl ( string ) : - - - - - - - - - - - - - - - -

def dsmvwl(string):
"""
-------------------------------------------------------
Disemvowels a string. out contains all the characters in s
that are not vowels. ('y' is not considered a vowel.) Case is preserved.
Use: out = dsmvwl(string)
-------------------------------------------------------
Parameters:
string - a string (str)
Returns:
out - string with the vowels removed (str)
-------------------------------------------------------
"""
Add this function to the PyDev module functions.py. Test it from .
Sample testing:
dsmvwl('I think your book is an utter piece of garbage.')
thnk yr bk s n ttr pc f grbg.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!