更新時(shí)間:2022-09-22 來(lái)源:黑馬程序員 瀏覽量:
rstrip函數(shù)用于刪除字符串末尾的指定字符,返回的是一個(gè)新的字符串。
語(yǔ)法格式如下:
str.rstrip([chars])
參數(shù)含義如下。
chars:指定刪除的字符,默認(rèn)為空格。
接下來(lái),通過(guò)一個(gè)案例來(lái)演示rstrip函數(shù)的使用,如例4-19所示。
例4-19 rstrip函數(shù)的使用
old_string = 'hello world itheima and itheimaApp' new_string = old_string.rjust(50) print(new_string)
運(yùn)行結(jié)果如圖4-20所示。
圖4-20 運(yùn)行結(jié)果
strip函數(shù)用于移除字符串頭尾指定的字符,返回的是一個(gè)新字符串。
語(yǔ)法格式如下:
str.strp([chars]);
參數(shù)含義如下。
chars;刪除字符串頭尾指定的字符,默認(rèn)為空格。
接下來(lái),通過(guò)一個(gè)案例來(lái)演示strip函數(shù)的使用,如例4-20所示。
例4-20 strip函數(shù)的使用
old_string = ' hello world itheima and itheimaApp ' new_string = old_string.strip() print (new_string)
運(yùn)行結(jié)果如圖4-21所示。
圖4-21 運(yùn)行結(jié)果
python中l(wèi)just函數(shù)和rjust函數(shù)是什么?-Python培訓(xùn)
2022-09-22Python中count函數(shù)是什么意思?-Python培訓(xùn)
2022-09-22python成員運(yùn)算符怎么用-Python培訓(xùn)
2022-09-22杭州python培訓(xùn)哪家比較靠譜?百度云資源Python入門(mén)到精通全集下載
2022-09-21Python培訓(xùn):Python中讀文件操作方法
2022-09-21Python培訓(xùn):python中寫(xiě)文件的操作方法
2022-09-21