{"id":13244,"date":"2021-09-30T12:30:55","date_gmt":"2021-09-30T07:00:55","guid":{"rendered":"https:\/\/python-programs.com\/?p=13244"},"modified":"2021-11-22T18:34:37","modified_gmt":"2021-11-22T13:04:37","slug":"python-program-to-remove-all-consonants-from-a-string","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-remove-all-consonants-from-a-string\/","title":{"rendered":"Python Program to Remove all Consonants from a String"},"content":{"rendered":"

Given a string, the task is to remove all consonants present in the given string in Python.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given string = 'HellothisisBTechGeeks '<\/pre>\n

Output:<\/strong><\/p>\n

The given string before removing consonants is [ HellothisisBTechGeeks ]\r\nThe given string after removing consonants is [ eoiieee ]<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given string = 'goodmorningthisisbtechgeeks '<\/pre>\n

Output:<\/strong><\/p>\n

The given string before removing consonants is [ goodmorningthisisbtechgeeks ]\r\nThe given string after removing consonants is [ oooiiieee ]<\/pre>\n

Program to Remove all Consonants from a String in Python<\/h2>\n

Below are the ways to remove all consonants present in the given string in Python.<\/p>\n