Replace all vowels in string with given character. Example: "hello","" => "hll*"
Implement this function:
def replace_vowels(s: str, ch: str) -> str:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: s, ch.
Input
'hello'
'*'
Output
'h*ll*'