“Menghapus tanda baca di Python” Kode Jawaban

Hapus tanda baca dari python string

#with re
import re
s = "string. With. Punctuation?"
s = re.sub(r'[^\w\s]','',s)
#without re
s = "string. With. Punctuation?"
s.translate(str.maketrans('', '', string.punctuation))
Bad Buffalo

Menghapus tanda baca di Python

import string 
from nltk.tokenize import word_tokenize
s =  set(string.punctuation)          # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
sentence = "Hey guys !, How are 'you' ?"
sentence = word_tokenize(sentence)
filtered_word = []
for i in sentence:
    if i not in s:
        filtered_word.append(i);
for word in filtered_word:
  print(word,end = " ")
ai-lover

tanda baca bersih dari python string

s.translate(str.maketrans('', '', string.punctuation))
Difficult Dormouse

Jawaban yang mirip dengan “Menghapus tanda baca di Python”

Pertanyaan yang mirip dengan “Menghapus tanda baca di Python”

Lebih banyak jawaban terkait untuk “Menghapus tanda baca di Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya