美文网首页
Python字符串

Python字符串

作者: 白s圣诞节 | 来源:发表于2018-07-21 18:56 被阅读0次

定义:

string[起始:结束:步长]

应用

(1)、查索引:

str.find(值) #从左向右
str.rfind(值) #从右向左


image.png

str.index(值)


image.png
(2)、次数:
str.count()
image.png

(3)、替代:
str.replace(/) #原有字符串不会改变


image.png

(4)、分割:

str.split("")


image.png

(5)、把字符串第一个字符大写:
str.capitalize()


image.png
(6)、把字符串的每个单词首字母大写:
str.title()
image.png

(7)、检查字符串是否以/开头,是则返回True,否则返回False:
str.startwith()


image.png
(8)、检查字符串是否是以/结尾的。
str.endwith()

(9)、把字符串中所有大写字符转换为小写字符:
str.lower()
image.png
(10)、把字符串中的大写转化为小写:
str.upper()
image.png

(11)、返回一个原字符串左对齐,并使用空格填充至长度 width 的新字符串:
str.ljust()


image.png
(12)、返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串:
str.rjust()
image.png
(13)、返回一个原字符串居中,并使用空格填充至长度 width 的新字符串:
str.center()
image.png
(14)、删除 mystr 左边的空白字符:
str.lstrip()
image.png
(15)、删除 mystr 字符串末尾的空白字符:
str.strip()
image.png
(16)、把mystr以str分割成三部分,str前,str和str后:
str.partition()
image.png
(17)、类似于 partition()函数,不过是从右边开始:
str.rapartition()
image.png
(18)、按照行分隔,返回一个包含各行作为元素的列表:
str.splitlines()
image.png
(19)、如果 mystr 所有字符都是字母 则返回 True,否则返回 False:

str.isalpha()


image.png
(20)、如果 mystr 只包含数字则返回 True 否则返回 False.:
str.isdigit()
image.png
(21)、如果 mystr 所有字符都是字母或数字则返回 True,否则返回 False:
str.isalnum()
image.png
(22)、如果 mystr 中只包含空格,则返回 True,否则返回 False:
str.isspace()
image.png
(23)、mystr 中每个字符后面插入str,构造出一个新的字符串:
str.join()
image.png

相关文章

  • python基础知识(3)

    python字符串 python转义字符 python字符串运算符 python字符串格式化 python格式化操...

  • python count()方法详解

    Python count()方法 Python 字符串 描述 Python count() 方法用于统计字符串里某...

  • python字符串格式化符号与内建函数资料表

    python字符串格式化符号: Python 的字符串内建函数 Python 的字符串常用内建函数如下:

  • 字符串操作方法

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • python字符串相关函数

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • 2018-09-28自学习资料

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • 字符串内置函数

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • 2018-07-18 字符串资料(函数方法)

    Python3字符串资料 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,...

  • day4 字符串自主操作

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • Day3-整理

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

网友评论

      本文标题:Python字符串

      本文链接:https://www.haomeiwen.com/subject/zktkmftx.html