“Hapus vokal dalam python string” Kode Jawaban

Metode Python untuk memfilter vokal dalam 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
Hungry Hippopotamus

Hapus vokal dalam python string

# 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 Hapus vokal dari string

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

Jawaban yang mirip dengan “Hapus vokal dalam python string”

Pertanyaan yang mirip dengan “Hapus vokal dalam python string”

Lebih banyak jawaban terkait untuk “Hapus vokal dalam python string” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya