Python

Python学习基础知识之 字符串String 的方法以及基本使

2020-09-16  本文已影响0人  嘤嘤嘤999

目录

一、Python字符串的介绍

1.1python中的字符串格式:

1.2字符串的输出案例

1.3字符串输入案例

二、下标的介绍

2.1字符串中的“下标”的使用

2.2如果想取出部分字符,那么可以通过下标的方法(注意python中下标从 0 开始) 案例如下

三、切片的基本使用

3.1切片案例

4、字符串的常见操作

4.1find()

4.2index()

​4.3count()

​4.4replace()

4.5split()

4.6startswith()

4.7endswith()

4.8upper()

4.9lower()

4.10title()

4.11capitalize()

4.12partition()

4.13rpartition()

4.14splitlines()

4.15isalpha()

4.16isdigit()

4.17isalnum()

4.18isspace()

4.19rjust()

4.20ljust()

4.21center()

4.22lstrip()

4.23rstrip()

4.24strip()

4.25rfind()

4.26join()


一、Python字符串的介绍

1.1python中的字符串格式:

如下定义的变量b,存储的是字符串类型的值     b = "hello usian.cn"    或者    b = 'hello usian.cn' 

双引号或者单引号中的数据,就是字符串

1.2字符串的输出案例

name = 'haha' print("我的名字是%s"%name)
image

1.3字符串输入案例

image

二、下标的介绍

1. 下标索引 所谓“下标”,就是编号,就好比超市中的存储柜的编号,通过这个编号就能找到相应的存储空间

2.1字符串中的“下标”的使用

image

2.2如果想取出部分字符,那么可以通过下标的方法(注意python中下标从 0 开始) 案例如下

image

三、切片的基本使用

1.切片是指对操作的对象截取其中一部分的操作。 字符串、列表、元组都支持切片操作。

2.切片的语法:[起始下标:结束:步长]

**注意:选取的区间从"起始"位开始,到"结束"位的前一位结束(不包含结束位本身):“左闭右开[ , )”!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!步长表示选取间隔。 **

3.切片的步长为负数,例如-1等,意思是从右往左开始

4.切片的步长为正数,例如0,1等,意思是从左往右开始

3.1切片案例

image

4、字符串的常见操作

4.1find()

假如目前有字符串my_str = “hello world hello python”

方法说明:检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则返回-1

格式:my_str.find(str, start=0, end=len(mystr))

image

4.2index()

** 假如目前有字符串my_str = “hello world hello python”**

方法说明:检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则报错

格式:my_str.index(str, start=0, end=len(mystr))

image

image

4.3count()

** 假如目前有字符串my_str = “hello world hello python”**

方法说明:返回 str在start和end之间 在 mystr里面出现的次数

格式:my_str.count(str, start=0, end=len(mystr))

image

4.4replace()

假如目前有字符串my_str = “hello world hello python”

方法说明:把 mystr 中的 str1 替换成 str2,如果 count 指定,则替换不超过 count 次.

格式:my_str.replace(str1, str2, mystr.count(str1))

image

4.5split()

**假如目前有字符串my_str = “hello world hello python” **

方法说明:以 str 为分隔符切片 mystr,如果 maxsplit有指定值,则仅分隔 maxsplit 个子字符串

**格式:my_str.split(str=" ", 2) **

image image

4.6startswith()

** 假如目前有字符串my_str = “hello world hello python”**

方法说明:检查字符串是否是以 str 开头, 是则返回 True,否则返回 False

**格式:my_str.startswith(str) **

image

4.7endswith()

** 假如目前有字符串my_str = “hello world hello python”**

方法说明:检查字符串是否以obj结束,如果是返回True,否则返回 False

格式:my_str.endswith(obj)

image

4.8upper()

假如目前有字符串my_str = “hello world hello python”

方法说明:转换 mystr 中的小写字母为大写

**格式:my_str.upper() **

image

4.9lower()

假如目前有字符串my_str = “Hello world Hello python”

方法说明:转换 mystr 中所有大写字符为小写

格式:my_str.lower()

image

4.10title()

假如目前有字符串my_str = “hello world hello python”

方法说明:把字符串的每个单词首字母大写

格式:my_str.title()

image

4.11capitalize()

假如目前有字符串my_str = “hello world hello python”

方法说明:把字符串的第一个字符大写

格式:my_str.capitalize()

image

4.12partition()

假如目前有字符串my_str = “hello world hello python”

方法说明:把mystr以str分割成三部分,str前,str和str后

**格式:my_str.partition(str) **

image

4.13rpartition()

假如目前有字符串my_str = “hello world hello python”

方法说明:类似于 partition()函数,不过是从右边开始.

格式:my_str.rpartition(str)

image

4.14splitlines()

假如目前有字符串my_str = “hello\nworld”

方法说明:按照行分隔,返回一个包含各行作为元素的列表

**格式:my_str.splitlines() **

image

4.15isalpha()

**假如目前有字符串my_str = “hello” **

方法说明:如果 mystr 所有字符都是字母 则返回 True,否则返回 False

格式:my_str.isalpha()

image

4.16isdigit()

**假如目前有字符串my_str = “hello” **

方法说明:如果 mystr 只包含数字则返回 True 否则返回 False.

格式:my_str.isdigit()

image

4.17isalnum()

** 假如目前有字符串my_str = “hello”**

**方法说明:如果 mystr 所有字符都是字母或数字则返回 True,否则返回 False **

**格式:my_str.isalnum() **

image

4.18isspace()

假如目前有字符串my_str = “hello”

**方法说明:如果 mystr 中只包含空格,则返回 True,否则返回 False. **

**格式:my_str.isspace() **

image

4.19rjust()

假如目前有字符串my_str = “hello”

**方法说明:返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串 **

**格式:my_str.rjust(width) **

image

4.20ljust()

假如目前有字符串my_str = “hello”

**方法说明:返回一个原字符串左对齐,并使用空格填充至长度 width 的新字符串 **

格式:my_str.ljust(width)

image

4.21center()

假如目前有字符串my_str = “hello world hello python”

**方法说明:返回一个原字符串居中对齐,并使用空格填充至长度 width 的新字符串 **

**格式:my_str.center(width) **

image

4.22lstrip()

假如目前有字符串my_str = “ hello”

方法说明:删除 my_str 左边的空白字符

**格式:my_str.lstrip() **

image

4.23rstrip()

假如目前有字符串my_str = “hello ”

方法说明:删除 mystr 字符串末尾的空白字符

**格式:my_str.rstrip() **

image

4.24strip()

假如目前有字符串my_str = “ hello ”

方法说明:删除mystr字符串两端的空白字符

**格式:my_str.strip() **

image

4.25rfind()

假如目前有字符串my_str = “hello world hello python”

方法说明:类似于 find()函数,不过是从右边开始查找.

格式:my_str.rfind(str, start=0,end=len(mystr) )

image

4.26join()

假如目前有字符串my_str = “_”

方法说明:str 中每个字符后面插入my_str,构造出一个新的字符串

**格式:my_str.join(str) **

image
上一篇下一篇

猜你喜欢

热点阅读