「Python」lstripメソッドで先頭の文字列を削除する
環境
PyCharm 2021.3
Python 3.9.7
書式
文字列.lstrip(削除する文字列)
文字列の先頭の文字を削除します。
先頭の指定した文字列を削除し、文字列を返しています。
使用例
# coding: utf-8 str = "STUDY*SKILL" res = str.lstrip("STUDY") print('先頭の文字列を削除する結果1') print(res) print('***************************') strB = "東京都" res2 = strB.lstrip("東") print('先頭の文字列を削除する結果2') print(res2)
結果
先頭の文字列を削除する結果1
*SKILL
***************************
先頭の文字列を削除する結果2
京都