摘要: #字符串常用基本操作 ##1.去除字符串左右特定字符 ####① 方法: str.lstrip(char)、str.rstrip(char)、str.strip(char)【同时删除左右两边指定字符】 删除两端一个至多个连续字符char ####② 参数: char为字符,而不是字符串。默认为空格。 阅读全文
posted @ 2021-10-18 16:30 ZghzzZyu 阅读(180) 评论(0) 推荐(0) 编辑
摘要: ##1.lstrip()、rstrip() 通常用于删除字符串左右的特定符号(一种,如空格),默认位空格。 s="--zhangdanshen " sNew1=s.lstrip("-") sNew2=s.rstrip("-") print(s) print(sNew1) print(sNew2) > 阅读全文
posted @ 2021-10-18 10:22 ZghzzZyu 阅读(480) 评论(0) 推荐(0) 编辑
摘要: #startswith() 和 endswith(): ##1.描述: startswith() 方法用于判断字符串是否以指定前缀开头 endswith() 方法用于判断字符串是否以指定后缀结尾 ##2.语法: S.startswith(prefix[,start=0[,end=len(S)]]) 阅读全文
posted @ 2021-10-15 15:22 ZghzzZyu 阅读(310) 评论(0) 推荐(0) 编辑