strip() 方法用于移除字符串头尾指定的字符(默认为空格) strip()方法语法:str.strip([chars]); 参数:chars :移除字符串头尾指定的字符返回值:返回移除字符串头尾指定的字符生成的新字符串 实例: >>> str = "000000 jbjadjaio 000000" >>> print(str.strip('0')) jbjadjaio >>> str2 = str.strip('0') >>> print(str2.strip()) jbjadjaio