“Python Remova as vogais da 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

como remover vogais de uma corda em python

string = input("Enter any string: ")
if string == 'x':
    exit();
else:
    newstr = string;
    print("\nRemoving vowels from the given string");
    vowels = ('a', 'e', 'i', 'o', 'u');
    for x in string.lower():
        if x in vowels:
            newstr = newstr.replace(x,"");
    print("New string after successfully removed all the vowels:");
    print(newstr);
Mighty Unicorn

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 “Python Remova as vogais da corda”

Perguntas semelhantes a “Python Remova as vogais da corda”

Mais respostas relacionadas para “Python Remova as vogais da corda” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código