Durante la programación, a veces, podemos tener un problema en el que se requiere que se elimine la primera palabra de la string. Este tipo de problemas son comunes y uno debe ser consciente de la solución para tales problemas. Analicemos ciertas formas en que se puede resolver este problema.
Método #1: Usarsplit()
Esta tarea se puede realizar usando la split
función que realiza una división de palabras y separa la primera palabra de la string con las palabras completas.
# Python3 code to demonstrate working of # Removing Initial word from string # Using split() # initializing string test_str = "GeeksforGeeks is best" # printing original string print("The original string is : " + test_str) # Using split() # Removing Initial word from string res = test_str.split(' ', 1)[1] # printing result print("The string after omitting first word is : " + str(res))
The original string is : GeeksforGeeks is best The string after omitting first word is : is best
Método #2: Usopartition()
La función de partición se usa para realizar esta tarea en particular en una tarea interna comparativamente menor en comparación con la función utilizada en el método anterior.
# Python3 code to demonstrate working of # Removing Initial word from string # Using partition() # initializing string test_str = "GeeksforGeeks is best" # printing original string print("The original string is : " + test_str) # Using partition() # Removing Initial word from string res = test_str.partition(' ')[2] # printing result print("The string after omitting first word is : " + str(res))
The original string is : GeeksforGeeks is best The string after omitting first word is : is best
Publicación traducida automáticamente
Artículo escrito por manjeet_04 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA