TCS wings1 DCA python coding TCS elevate wings1 coding questions Program to accept the strings which contains all vowels Given a string, the task is to check if every vowel is present or not. We consider a vowel to be present if it is present in upper case or lower case. i.. 'a', 'e', 'I'.'o', 'u' or 'A', 'E', '1', 'O', 'U'. 23 Examples: Input: geeksforgeeks Output: Not Accepted All vowels are not present Input: ABeelghiObhkUul Output: Accepted All vowels are present. Program to print even length words in a string Given a string. The task is to print all words with even length in the given string. Examples: Input: s = "This is a python language" Output: This is python language Input: s = "i am muskan" Output: am muskan Words Frequency in String Shorthand Count the frequency of all the words in a given string. Examples Input: test_str = 'Gfg is best' Output: {'Gfg: 1, ...
Blog contains latest technology updates, interview experiences, languages and frameworks, problems and codes etc.