学科分类
目录
基础

strip

strip函数用于移除字符串头尾指定的字符(默认为空格)。

语法格式如下:

str.strip([chars])

参数如下:

  • chars -- 移除字符串头尾指定的字符。

接下来,通过一个案例来演示strip函数的使用,具体代码如下所示。

mystr = '  hello world itheima and itheimaApp  '

newStr = mystr.strip()

print(newStr)

运行结果如图1所示。

image-20200616104856240

图1 运行结果

多学一招:Unicode字符串

在Python 2中,普通字符串是以8位ASCII码进行存储的,而Unicode字符串则存储为16位Unicode字符串,这样能够表示更多的字符集。使用的语法是在字符串前面加上前缀 u。

在Python3中,所有的字符串都是Unicode字符串。

点击此处
隐藏目录