Question: URGENT!!! I am using Python and JES!! Thumbs up if you help as soon as possible! Problem A (10 points). Write a function getConsonants that
URGENT!!! I am using Python and JES!! Thumbs up if you help as soon as possible!

Problem A (10 points). Write a function getConsonants that accepts a string as input and returns a new string that contains all the consonants in that string: >>>getConsonants( Hogwarts") Hgwrts Problem B (10 points). Write a function addHyphen that accepts a string as input and returns the same string with hyphens inserted after each character in that string: addHyphen("Hogwarts") H-o-g-w-a- Problem C (10 points). Write a function countConsonants that accepts a string as input and returns the number of consonants in that string: >>countConsonants("Hogwarts") r-t-s 6 Problem D (10 points). Write a function hasBoth that accepts a string as input and returns true if the string contains both consonants and vowels, and false otherwise UES might display 1 instead of true and 0 instead of false, which is fine): >>>hasBoth("Hogwarts") true >>hasBoth("aeo") false >>>hasBoth("www") false
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
