Transform a string by replacing every vowel with an asterisk.
Constraints
Example
>>> vowel_stars("hello world")
'h*ll* w*rld'
>>> vowel_stars("PYTHON")
'PYTH*N'
>>> vowel_stars("")
''
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints