Python Forum
remove vowels in word with conditional
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
remove vowels in word with conditional
#5
I'm going to put my version as well.
newwords = []
vowels = ('a', 'e', 'i', 'o', 'u')
for word in words:
    if len(word) > 4:
        for letter in word:
            if letter in vowels:
                word = word.replace(letter, '')
        newwords.append(word)
    else:
        newwords.append(word)
print(' '.join(newwords))
Output:
Msnry - Cncrt Blck (Smll) - Misc Air Lyr - Insltn - Almnm
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply


Messages In This Thread
RE: remove vowels in word with conditional - by menator01 - May-01-2021, 09:21 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Problem: Check if a list contains a word and then continue with the next word Mangono 2 2,559 Aug-12-2021, 04:25 PM
Last Post: palladium
  counting vowels in a string project_science 3 2,614 Dec-30-2020, 06:44 PM
Last Post: buran
  Counting vowels in a string (PyBite #106) Drone4four 4 2,307 Jul-07-2020, 05:29 AM
Last Post: theknowshares
  Python Speech recognition, word by word AceScottie 6 16,103 Apr-12-2020, 09:50 AM
Last Post: vinayakdhage
  Remove a sentence if it contains a word. lokhtar 6 5,997 Feb-11-2020, 04:43 PM
Last Post: stullis
  Cannot Remove the Double Quotes on a Certain Word (String) Python BeautifulSoup soothsayerpg 5 7,174 Oct-27-2019, 09:53 AM
Last Post: newbieAuggie2019
  print a word after specific word search evilcode1 8 4,934 Oct-22-2019, 08:08 AM
Last Post: newbieAuggie2019
  difference between word: and word[:] in for loop zowhair 2 3,712 Mar-03-2018, 07:24 AM
Last Post: zowhair
  no vowels function alex_bgtv 6 5,108 Jan-01-2018, 08:48 PM
Last Post: alex_bgtv
  replace vowels niru 9 20,839 Sep-26-2017, 12:46 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020