Python 字符串 strip() 方法
定义和用法
The strip()
方法移除任何前导和尾随空格。
前导表示字符串开头,尾随表示字符串结尾。
您可以指定要移除的字符,如果不指定,则将移除任何空格。
语法
string.strip(characters)
参数值
参数 | 描述 |
---|---|
字符 | 可选。要删除作为开头/结尾字符的一组字符 |
The strip()
方法移除任何前导和尾随空格。
前导表示字符串开头,尾随表示字符串结尾。
您可以指定要移除的字符,如果不指定,则将移除任何空格。
string.strip(characters)
参数 | 描述 |
---|---|
字符 | 可选。要删除作为开头/结尾字符的一组字符 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]