Por fin después de mucho luchar hemos encontrado el arreglo de este atasco que muchos usuarios de nuestro sitio web han tenido. Si tienes alguna información que compartir no dudes en dejar tu comentario.
Ejemplo 1: eliminar la puntuación de string pitón
#with reimport 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: eliminar puntuaciones usando 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 notin punctuations:
no_punct = no_punct + char
# display the unpunctuated stringprint(no_punct)
Acuérdate de que tienes la opción de parafrasear si tropezaste tu escollo justo a tiempo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)