侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130555 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

Python内置容器之字符串

2023-12-22 星期五 / 0 评论 / 0 点赞 / 67 阅读 / 5411 字

3.字符串str 在Python3中字符串是unicode序列,类似于存储字符的列表;元素是可哈希的常量,字符串本身是一种不可变的,可哈希的线性数据结构 【1】字符串定义 用引号'A'|"

3.字符串str

    在Python3中字符串是unicode序列,类似于存储字符的列表;元素是可哈希的常量,字符串本身是一种不可变的,可哈希的线性数据结构

    【1】字符串定义

        用引号'A'|"B"|'''C''',或者str函数

    【2】连接 join

 

    【3】分割 splite rsplite splitlines partition rpatition

        split 从左到右分割开            str --> list

        rsplit 从右往左分割        str --> list

        splitlines 以换行符为分割符,分割全部        str --> list

        partition 保留分隔符,从左往右分割全部        str --> tuple

        rpartition 保留分隔符,从右往左分割        str --> tuple

    【4】修改 capitalize title upper lower swapcase | center ljust rjust zfill | strip lstrip rstrip

        自然语言的修改 ,大小写capitalize title upper lower swapcase

        

        程序语言的修改

          填充 center ljust rjust zfill

        去除 strip lstrip rstip

    【5】判断 endswith

    【6】查找替换 count find rfind index rindex replace

        count 字符计数

        find 值查找,从左往右第一个

        rfind 值查找,从右往左第一个

        index 值索引

        replace

    【7】格式化 print style | format

        print style

        format方法

        【8】bytes

广告 广告

评论区