Saltar al contenido

cómo quitar la puntuación en el ejemplo de código de Python

Ejemplo 1: eliminar la puntuación de la cadena de python

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

Ejemplo 2: puntuación limpia de cadena de python

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

Ejemplo 3: eliminar las puntuaciones con Python

# define punctuation
punctuations = '''!()-[]{};:'",<>./[email protected]#$%^&*_~'''

my_str = "Hello!!!, he said ---and went."

# To take input from the user
# my_str = input("Enter a string: ")

# remove punctuation from the string
no_punct = ""
for char in my_str:
   if char not in punctuations:
       no_punct = no_punct + char

# display the unpunctuated string
print(no_punct)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *