1. 程式人生 > >Python strip()方法學習

Python strip()方法學習

描述: strip()方法用於去除字串頭尾指定的字元(預設為空格或者 換行)

語法:

str.strip([chars])

引數chars 是指定字元

返回值:去除字元口串頭尾指定的字元chars 生成的新字串

e.g去除‘0’: str = 0012345000

      print(str.strip('0'))

結果: ‘12345’

e.g去除空格: str= '      study  up    '

     print(str.strip())

結果: 'study  up'

e.g指定字元'xy',包含x或y或xy去除 str = 'xabcdxy'

    print(str.strip('xy'))

結果:'abcd'

e.g 去除換行


結果: abc

             ee


結果: abc   ee