“Remova vogais em um python de corda” Respostas de código

Método Python para filtrar vogais em uma corda

def anti_vowel(c):
    newstr = c
    vowels = ('a', 'e', 'i', 'o', 'u')
    for x in c.lower():
        if x in vowels:
            newstr = newstr.replace(x,"")

    return newstr
Hungry Hippopotamus

Remova vogais em um python de corda

# removing vowels in a string
def anti_vowel(c):
    newstr = c
    vowels = ('a', 'e', 'i', 'o', 'u')
    for x in c.lower():
        if x in vowels:
            newstr = newstr.replace(x,"")

    return newstr
Stupid Sable

Python Remova as vogais da corda

import re
s = "Insert your string here"
# this will look to upper- AND lower-case vowels
# this is equivalent to re.sub("[aeiouAEIOU]", "", s)
re.sub("[AEIOU]", "", s, re.IGNORECASE) 
>> "nsrt yr strng hr"
wolf-like_hunter

Respostas semelhantes a “Remova vogais em um python de corda”

Perguntas semelhantes a “Remova vogais em um python de corda”

Mais respostas relacionadas para “Remova vogais em um python de corda” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código