
python help...
Write a function justVowels() that takes a string as a parameter and returns a new string that contains all the vowels found in the parameter string. The vowels in the returned string should appear in the same order as they did in the parameter string. A vowel is one of a, e, i, o, or u. both the upper- and lower-case vowels should be included. The characters in the returned string should have the same capitalization as they did in the parameter string. If the function is given a string without any vowels or an empty string, it should return the empty string. Use the if-else condition with iterate loop pattern. Don’t forget to include the docstring and comments.
How it should run...
>>> justVowels('Did you include your collaboration statement')
'iouiueouoaoaioaee'
>>> justVowels('If you did not include your collaboration statement no points')
'Iouioiueouoaoaioaeeooi'
>>> justVowels('1,2,3,4,...')
''
>>> justVowels('')
''

The answer is given below with the code and output screenshots
Step by stepSolved in 4 steps with 2 images

- Given string userGreeting on one line and string userName on a second line, append a space to userGreeting. Then, append userName to userGreeting. Lastly, append a period to userGreeting. Ex: If the input is: Hey Wilma Lee then the output is: Hey Wilma Lee. #include <iostream>#include <string>using namespace std; int main() { string userGreeting; string userName; getline(cin, userGreeting); getline(cin, userName); /* Your code goes here */ cout << userGreeting << endl; return 0;}arrow_forwardIn Python Create a program that reads a full name as a single string, and and uses the split creates a username with the following rules: The first character of the username is the first character of the first name. The second character of the username is the first letter of the middle name, if one was provided. The rest of the characters will be a prefix of the last name, long enough to meet the length requirement. The username can have up to 8 characters only, and in lowercase.arrow_forwardHow to write a function in python that takes a string s = kkeeepinng and returns the non-repeating character from strrint s. Such that the output should be as follows: p i garrow_forward
- Consider the following line of code: X = new int*[n]; What should the type of x be? O int O int* O int** O int& O None of the abovearrow_forwardWrite a function in Scala programming language that takes a string parameter and returns whether the string starts with "Sc" or not. Test the function for the sample strings "Scala", "Programming", "Science".arrow_forwardI have a string with a phrase in it, and I want to turn it into all caps using the function toupper. Write a code fragment that does that and then prints the resulting string.arrow_forward
- [Python] Write a function called “add_spaces” that takes in an argument called “initial_string”. initial_string will always be a non empty string. The function should return the same string but with an added space in between all of the letters. If there are already spaces in the initial_string passed in, you should not add an extra space in between those spaces.arrow_forwardIn Python use import sys Create a program that has a function that takes in an argument and prints the number of vowels in the string. It should work for both lowercase and uppercase vowels.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





