码迷,mamicode.com
首页 > 编程语言 > 详细

python进阶之内置方法

时间:2019-08-02 20:43:35      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:dig   str1   max   移除   常用   case   swap   iss   index   

python进阶之内置方法

字符串类型的内置方法

  1. 常用操作与方法:

    按索引取值 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 :
  2. 需要掌握的:

    左/右去除空白 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()
  3. 其他操作:

    查找 find/rfind/index/rindex/count
    对其方式 center/ljust/rjust/zfill
    扩张tab expandtabs
    大小写 capitalize/swapcase/title
    is判断 isalum/isalpha/islower/isspace/istitle

python进阶之内置方法

标签:dig   str1   max   移除   常用   case   swap   iss   index   

原文地址:https://www.cnblogs.com/Du704/p/11290755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!