Python 3.1 快速導覽 - 字串型態的 lstrip()

字串 (string) 型態 (type) 的 lstrip() 方法 (method) ,回傳將 str 左邊具有 chars 字元去除的拷貝版本, chars 預設為空格符號

方法描述
str.lstrip([chars])回傳將 str 左邊具有 chars 字元去除的拷貝版本, chars 預設為空格符號


舉例示範如下
a = "\tpuppy"
b = "Puppy"
c = "PUPPY"
d = "pUpPy"

print(a)
print(a.lstrip())
print()

print(b)
print(b.lstrip("P"))
print()

print(c)
print(c.lstrip("PU"))
print()

print(d)
print(d.lstrip("puy"))
print()

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:lstrip.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
字串string
型態type
方法method


內建型態




沒有留言: