# Python CodeRecipe|lstrip()の使い方
❮ Home ❮ String Methods
# lstrip()の例1
Remove spaces to the left of the string:
txt = " banana "x =
txt.lstrip()
print("of all fruits", x, "is my favorite")
# lstrip()の定義及び使い方
lstrip()関数は、 文字(スペースは、削除するデフォルトの先頭文字です。)
# lstrip()の構文
string.lstrip(characters)
# lstrip()の引数
パラメータ 説明
characters オプション. A set of characters to remove as leading characters
# Example
Remove the leading characters:
txt = ",,,,,ssaaww.....banana"x = txt.lstrip(",.asw")
print(x)
❮ Home ❮ String Methods