欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

python字符串操作详析

时间:2023-03-12 11:24:54|栏目:Python代码|点击:

字符串是不可变类型,可以重新赋值,但不可以索引改变其中一个值,只能拼接字符串建立新变量

索引和切片
索引:越界会报错

切片:

越界会自动修改
不包含右端索引
需重小到大的写,否则返回空字符串

motto = '积善有家,必有余庆。'
# 索引
print(motto[0])
# print(motto[10]) 报错

# 切片  不包含右侧  从小到大
print(motto[0:9])
print(motto[0:10])
print(motto[0:100])
print(motto[0:])
print(motto[-10:])
print(motto[-100:])
print(motto[-5:-1])
print(motto[0:10:2])
print(motto[:5])
print(motto[3:2])  # 若大到小,则返回''
print(motto[2:3])

一、5种字符串检索方法

s = "ILovePython"
# 1. str.count('',起点,终点)
print(s.count('o', 1, 5))
print(s.count('o'))

# 2. str.find('',起点,终点)  找不到返回-1
print(s.find('o',3))
print(s.find('o',3,5))
print(s.find('o'))

# 3. str.index('',起点,终点)   找不到则报错
print(s.index('o'))
print(s.index('Py'))

# 4. str.startswith('',起点,终点)
print(s.startswith("IL"))
print(s.startswith("L"))

# 5. str.endswith('',起点,终点)
print(s.endswith("on"))
print(s.endswith("n"))
print(s.endswith("e"))
1
2
9
-1
2
2
5
True
False
True
True
False

二、join字符串拼接方法 [列表/元组 --> 字符串]

将列表元组,拼接成字符串

# join()函数  
list_val = ['www', 'baidu', 'com']
str_val = '.'.join(list_val)
print(str_val)

tuple = ('Users', 'andy', 'code')
str_val = '/'.join(tuple)
print(str_val)

三、3种字符串分割方法 [字符串 --> 列表/元组]

# 1. split('',分割次数)   默认从空格 \n \r \t切掉
s = "我 爱\t你\nPy thon"
print(s.split())
s1 = "python我爱你Python"
print(s1.split("y"))
s2 = "python我爱你Python"
print(s1.split("y", 1))

# 2. splitlines()  默认从换行符rt切掉
s = "我 爱\t你\nPy thon"
print(s.splitlines())

# 3. partition('')  不切掉 分成3元素元组
s = "我爱你Python"
print(s.partition('爱'))
['我', '爱', '你', 'Py', 'thon']
['p', 'thon我爱你P', 'thon']
['p', 'thon我爱你Python']
['我 爱\t你', 'Py thon']
('我', '爱', '你Python')

split()和splitlines()默认情况下的对比:

split()和partition()对比:split()切掉后变列表,partition()不切掉变元组

四、5种大小写转换方法

string_val = 'I love Python'
print(string_val.upper())
print(string_val.lower())
print(string_val.title())  # 每个单词第一个字母变大写
print(string_val.capitalize())  # 仅第一个字母变大写
print(string_val.swapcase())
I LOVE PYTHON
i love python
I Love Python
I love python
i LOVE pYTHON

五、3种字符串修剪方法

默认首尾的空格和换行符\t\r进行修剪
可用参数设定首尾的其他符号进行修剪

lstrip() 只删首
rstrip() 只删尾

s = "     ILovepython"
print(s)
print(s.strip())
print(s.strip('     I'))
print(s.strip('n'))

s1 = "00000003210Runoob0123000000"
print(s1.strip('0'))
print(s1.lstrip('0'))
print(s1.rstrip('0'))
  ILovepython
ILovepython
Lovepython
3210Runoob0123
3210Runoob0123000000
00000003210Runoob0123

上一篇:使用pandas生成/读取csv文件的方法实例

栏    目:Python代码

下一篇:基于PyQT5制作一个课堂点名系统

本文标题:python字符串操作详析

本文地址:http://www.codeinn.net/misctech/227307.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有