lstrip Python · 字符串方法
只去掉字符串左边的空白字符。
怎么用
字符串.lstrip()
小例子
print(' hi '.lstrip())
运行结果
hi
官方文档:https://docs.python.org/zh-cn/3/library/stdtypes.html#string-methods
在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条lstrip Python · 字符串方法只去掉字符串左边的空白字符。
字符串.lstrip()
print(' hi '.lstrip())
hi
官方文档:https://docs.python.org/zh-cn/3/library/stdtypes.html#string-methods
在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条