“Python entfernen Sie Vokale aus der Saite” Code-Antworten

Python -Methode zum Filtern von Vokalen in einer Zeichenfolge

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

So entfernen Sie Vokale aus einer Schnur in 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

Entfernen Sie die Vokale in einer Saitenpython

# 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 entfernen Sie Vokale aus der Saite

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

Ähnliche Antworten wie “Python entfernen Sie Vokale aus der Saite”

Fragen ähnlich wie “Python entfernen Sie Vokale aus der Saite”

Weitere verwandte Antworten zu “Python entfernen Sie Vokale aus der Saite” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen