• Python常见字符串处理操作


    Python中字符串处理的方法已经超过37种了,下面是一些常用的字符串处理的方法,以后慢慢添加。

    >>> s = 'Django is cool' #创建一个字符串
    >>> words = s.split()   #使用空格分隔字符串,保存在一个words列表里
    >>> words
    ['Django', 'is', 'cool']
    >>> ' '.join(words)    #用空格重组字符串
    'Django is cool'
    >>> '::'.join(words)   #用::重组字符串
    'Django::is::cool'
    >>> ''.join(words)     #直接重组字符串
    'Djangoiscool'
    >>> s.upper()          #将字符串改为大写
    'DJANGO IS COOL'
    >>> s.title()      #将字符串中的每个词的首字母变为大写
    'Django Is Cool'
    >>> s.upper().isupper()   #判断字符串是否为大写
    True
    >>> s.capitalize()     #将字符串的首字母变为大写
    'Django is cool'
    >>> s 'Django is cool' >>> s.lower().title() 'Django Is Cool' >>> s.lower() 'django is cool' >>> s.lower().capitalize() 'Django is cool'

    >>> s.count('o')    #计算字符串中某个字符的数目 3 >>> s.find('go')    #从字符串中查找某个字符串,查找成功后返回该字符串的下标 4 >>> >>> s.find('xxx') #查找字符串,失败后返回-1 -1 >>> s.startswith('Python')  #判断是否为字符串的起始字符串,是返回true,不是则返回false False >>> s.startswith('Django') True >>> s.replace('Django','Python') #字符串替换 'Python is cool'
  • 相关阅读:
    Linux Vim编辑器
    Linux sed 流编辑器
    Shell 编程 (变量和条件测试)
    Linux 下 Bash配置文件读取
    Linux 用户、权限
    Linux 指令(一)文件/目录操作
    Ubuntu 下安装 Swoole
    Mysql IN语句查询
    Mysql 查询优化
    Mysql 获取表属性
  • 原文地址:https://www.cnblogs.com/coffy/p/Python.html
Copyright © 2020-2023  润新知