Python/ref string lstrip

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字符串lstrip()方法

❮字符串方法

删除字符串左侧的空格:

    txt = "     banana     "

x = 
    txt.lstrip()


    print("of all fruits", x, "is my favorite")

定义和用法

The lstrip() 方法删除所有前导字符(空格是要删除的默认前导字符)

句法

string.lstrip(characters)
  

参数值

参数 描述
characters 可选的。一组要删除的字符作为前导字符

更多例子

删除前导字符:

    txt = ",,,,,ssaaww.....banana"

x = txt.lstrip(",.asw")


    print(x)

❮字符串方法