“Python удалить гласные из строки” Ответ

Метод Python для фильтрации гласных в строке

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

Как удалить гласные из строки в питоне

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

Удалить гласные в струнном питоне

# 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 удалить гласные из строки

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

Ответы похожие на “Python удалить гласные из строки”

Вопросы похожие на “Python удалить гласные из строки”

Больше похожих ответов на “Python удалить гласные из строки” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования