Python lstrip() 左端から指定した文字列などを抜き取る str = '\npython\n' print(str.lstrip()) str = 'TOMATO' print(str.lstrip('T'))