El método Python String lstrip() devuelve una copia de la string sin los caracteres iniciales (basado en el argumento de string pasado). Si no se pasa ningún argumento, elimina los espacios iniciales.
Sintaxis:
string.lstrip(caracteres)
Parámetros:
- caracteres [opcional]: un conjunto de caracteres para eliminar como caracteres iniciales.
Devoluciones:
Devuelve una copia de la string sin los caracteres principales.
Ejemplo 1
Python3
# Python3 program to demonstrate the use of # lstrip() method using default parameter # string which is to be stripped string = " geeksforgeeks" # Removes spaces from left. print(string.lstrip())
Producción:
geeksforgeeks
Ejemplo 2
Python3
# Python3 program to demonstrate the use of # lstrip() method using optional parameters # string which is to be stripped string = "++++x...y!!z* geeksforgeeks" # Removes given set of characters from left. print(string.lstrip("+.!*xyz"))
Producción:
geeksforgeeks
Ejemplo 3
Python3
# string which is to be stripped string = "geeks for geeks" # Argument doesn't contain leading 'g' # So, no characters are removed print(string.lstrip('ge'))
Producción:
ks for geeks
Ejemplo 4
Hay un error de tiempo de ejecución cuando intentamos eliminar cualquier cosa excepto una string.
Python3
# Python3 program to demonstrate the use of # strip() method error string = " geeks for geeks " list =[1, 2, 3] # prints the error message print(list.lstrip())
Producción:
print(list.lstrip()) AttributeError: 'list' object has no attribute 'lstrip'
Publicación traducida automáticamente
Artículo escrito por AKASH GUPTA 6 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA