Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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") falseStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started