python进阶之内置方法
Posted du704
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python进阶之内置方法相关的知识,希望对你有一定的参考价值。
python进阶之内置方法
字符串类型的内置方法
常用操作与方法:
按索引取值 str[index] 切片 ste[start:stop:step] 长度 len(str) 成员运算in和not in str1 in str2; str1 not in str2 移除空白 str.strip() 切分 str.split() 循环 for i in str : 需要掌握的:
左/右去除空白 lstrip/rstrip 截掉 string 左/右边的空格 大/小写 upper/lower 转换 string 中所有小写字符为大写/大写为小写 判定开始/结束字符 startswith/endswith 右切分 rsplit(sep=" ",maxsplit) 以 sep为分隔符切片 string,如果 maxsplit 有指定值,则仅分隔 maxsplit个子字符串 联合 str.join(seq) 以 string 作为分隔符,将 seq 中所有的元素(的字符串表示)合并为一个新的字符串 替换 str.replace(old,new) 是否为数字 str.isdigit() 其他操作:
查找 find/rfind/index/rindex/count 对其方式 center/ljust/rjust/zfill 扩张tab expandtabs 大小写 capitalize/swapcase/title is判断 isalum/isalpha/islower/isspace/istitle
以上是关于python进阶之内置方法的主要内容,如果未能解决你的问题,请参考以下文章