Necesitamos tu ayuda para compartir nuestras crónicas acerca de las ciencias informáticas.
Ejemplo 1: python reemplaza char en string
# Python3 program todemonstrate the
# use of replace() method
string ="geeks for geeks geeks geeks geeks"
# Prints the string by replacing geeks by Geeksprint(string.replace("geeks","Geeks"))
# Prints the string by replacing only 3 occurrence of Geeksprint(string.replace("geeks","GeeksforGeeks",3))
Ejemplo 2: python cambia el carácter en string
mytext ='Hello Zorld'
mytext = mytext.replace('Z','W')
print mytext,
Ejemplo 3: reemplazar caracteres en string pitón
>>> a =''>>> print a.replace('&', r'&')
&#
>>> print a.replace('#', r'#')&#
>>>
Ejemplo 4: asignar un valor a un carácter en string o archivo de texto en python
note:text can contain your text file that is already read or a string
text ='hello'
vocab=sorted(set(text))
char_to_ind =char:ind for ind,char in enumerate(vocab)
Calificaciones y comentarios
Agradecemos que quieras añadir valor a nuestra información aportando tu veteranía en las críticas.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)