【Python从入门到精通】字符串常用方法

💬大家好,我是夏日等风,一位csdn热衷技术的博主,希望大家多多支持。
✅我的人生我自己书写,余生很长,请多光照,我的人生,敬请期待。
🔥系列专栏:Python从入门到精通

在这里插入图片描述

字符串是什么?

字符串就是一系列字符。字符串属于不可变序列,在python中,用引号包裹的都是字符串,其中引号可以是单引号,双引号,也可以是三引号(单,双引号中的字符必须在一行,三引号中的字符可以分布在多行)

txt = 'hello world'  # 使用单引号,字符串内容必须在一行
txt1 = "hello python world "  # 使用双引号,字符串内容必须在一行
# 使用三引号,字符串内容可以分布在多行
txt2 = '''life is short 
i use python '''

1.find()

find()方法返回该元素最小索引值(找不到返回-1)
eg:返回"python"的最小索引值

txt = "hello python world."
res = txt.find("python")
print(res)

运行结果如下:

6

2.index()

index()方法返回该元素最小索引值(找不到元素会报错)
eg:返回"world"的最小索引值

txt = "hello python world."
res = txt.index("world")
print(res)

运行结果如下:

13

3.startswith()

startswith() 方法如果字符串以指定值开头,返回True,否则返回False
eg:判断字符串是不是以"hello"开头

txt = "hello python world."
res = txt.startswith("hello")
print(res)

运行结果如下:

True

4.endswith()

endswith() 方法如果字符串以指定值结束,返回True,否则返回False
eg:判断字符串是不是以"hello"结束

txt = "hello python world."
res = txt.endswith("hello")
print(res)

运行结果如下:

Flase

5.count()

count() 方法返回指定值在字符串中出现的次数。
eg:统计"o"出现次数

txt = "hello python world."
res = txt.count("o")
print(res)

运行结果如下:

3

6.join()

join() 方法获取可迭代对象中的所有项目,并将它们连接为一个字符串。必须将字符串指定为分隔符
eg:使用"-"作为分割符,将列表中的所有项连接到字符串中

res = ['h','e','l','l','o']
print('-'.join(res))

运行结果如下:

h-e-l-l-o

7.upper()

upper()方法将字符串全部转为大写
eg:将字符串"hello python world"全部转为大写

tet = "hello python world"
res = txt.upper()
print(res)

运行结果如下:

HELLO WORLD

8.lower()

eg:lower()方法将字符串全部转为小写
eg:将字符串"HELLO PYTHON WORLD"全部转为小写

tet = "HELLO PYTHON WORLD"
res = txt.lower()
print(res)

运行结果如下:

hello python world

9.split()

split()方法以指定字符分割字符串,并返回列表
eg:以?号作为分隔符,分割字符串

txt = "hello?python?world"
res = txt.split("?")
print(res)

运行结果如下:

['hello', 'python', 'world']

扩展
分割后打印还是原字符串(字符串是不可变类型,分割操作是复制一份原字符串,更改的是复制出来的那一份)

txt = "hello?python?world"
res = txt.split("?")
# 打印分割后的
print(res)
# 打印原字符串
print(txt)

['hello', 'python', 'world']
hello?python?world

10.strip()

strip()方法删除字符串两端的空格
eg:删除hello两端的空格

txt = "    hello  "
res = txt.strip()
print(res)

运行结果如下:

hello

11.replace()

replace()方法以指定内容替换掉被指定内容(默认替换全部,可指定替换次数)
eg:以java替换python

txt = 'hello python world'
res = txt.replace('python','java')
print(res)

运行结果如下:

hello java world

扩展
替换后打印还是原字符串(字符串是不可变类型,替换操作是复制一份原字符串,更改的是复制出来的那一份)

txt = 'hello python world'
res = txt.replace('python','java')
# 打印替换后的
print(res)
# 打印原字符串
print(txt)

运行结果如下:

hello java world
hello python world

12.len()

len()返回字符串长度
eg:返回’hello python world’的长度

a_str = 'hello python world'
print(len(a_str))

运行结果如下:

18
评论 16
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值