字符串的创建
name = '小明'
查看对象的类型
type()查看对象的类型
字符串转义符
转义字符\
反斜杠符号\\
data = 'C:\\Users\\12345\\Desktop\\基础'
print(data) # 'C:\Users\12345\Desktop\基础'
续行符 \(在行尾时)
data = 'firstLine' \
'这是第二行'
print(data) #firstLine这是第二行
# 续行符将两行拼接在一起
单引号\' 双引号\"
字符串中包含单双引号,需要使用反斜杠进行转义。
data = 'i say \'hello\''
print(data) #i say 'hello'
回车符 \n,将光标移到下一行开头。
print("这是第一行\n这是第二行")
# 这是第一行
# 这是第二行
#
字符串格式化
三种方法
format
money = 100
data = '我有{}'元
print(data)
age = 18
data2 = '我{}岁,我有{}元'.format(age,money)
data3 = '我{1}岁,我有{0}元'.format(money,age)
print(data2) #我18岁,我有100元
print(data3) #我18岁,我有100元
money2 = 100.123456
data4 = '我有{:.3f}元'.format(money2)
print(data4) #我有100.123元
%
常用的三个
%s 格式化字符串(也可以格式化其他类型数据,当作字符串匹配)
%f 格式化浮点数,可指定小数点后的精度
%d 格式化整数
name = 'alex'
age = 18
money = 100.123456
data = '我的名字是%s,我%d岁,我有%.3f元' % (name,age,money)
print(data) #我的名字是alex,我18岁,我有100.123元
f'' python3.7新功能
value = 100.12345
age = 18
data = f'我{age}岁,我有{value:.2f}元'
print(data) #我18岁,我有100.12元
字符操作符
操作符 | 描述 |
---|---|
+ | 字符串连接 |
* | 重复输出字符串 |
[] | 通过索引获取字符串中的字符 |
[:] | 截取字符串中的一部分 |
in | 成员运算符-如果字符串中包含给定的字符返回True |
not in | 成员运算符-如果字符串中不包含给定的字符返回True |
r/R | 原始字符串-所有字符串都是按照字面的意思来使用,没有转义特殊或不能打印的字符 |
+ 字符串连接
data1 = "how are you?"
data2 = "I am fine"
data = data1+ data2
print(data) #how are you?I am fine
数据类型强转换
int() #转换为整数类型
str() #转换为字符串类型
float() #转换为浮点数类型
bool() #转换为bool类型,true 或 false
age = 20
data1 = "how are you?"
data2 = "I am fine"
data = data1 + str(age) + data2
print(data) # how are you?20I am fine
*重复输出字符串
print('abc'*3) #abcabcabc
[ ]通过索引获取字符串中的字符
name = "james"
print(name[0]) #j
print(name[3]) #e
print(name[-1]) #s
[:]截取字符串的一部分,切片, 从一个索引切到另一个索引
data = "This is a string" #字符串从0开始编号
print(data[:12]) #This is a
#从开头截取到第12位,不包含第12位r
print(data[2:]) #is is a string
print(data[1:5]) #his
print(data[3:-3]) #s is a str
print(data[1:6:2]) #1至6,步长为2,hsi
print(data[::-1]) #倒着取,gnirts a si sihT
r/R 原始字符串,防转义字符
data = 'C:\\Users\\12345\\Desktop\\基础'
data2 = r'C:\Users\12345\Desktop\基础'
print(data) #C:\Users\12345\Desktop\基础
print(data2) #C:\Users\12345\Desktop\基础
字符串的常用操作方法
str1 = 'hello world and Python and Windows'
查找位置 find()
#str1.find(查找的字符串,开始的位置,结束的位置) 开始和结束位置,都可以大于字符串的长度,找不到即返回-1
#find 如果找到了返回索引值 找不到返回-1
print(str1.find('world')) #6
print(str1.find('worlds')) #-1
print(str1.find('and',13,50)) #在某个范围中查找
索引位置(查找) index()
如果找到了返回索引值,否则就报错
print(str1.index('and')) #12
print(str1.index('ands')) #报错
查找字符串出现的次数 count()
print(str1.count('and')) #2
print(str1.count('ands)) #0
字符串替换 replace()
ps:字符串是不可变类型,替换后需要赋值给新变量
replace(旧的,新的,替换的次数)
new_str = str1.replace('and', 'he')
print(str1) #hello world and Python and Windows
print(new_str) #hello world he Python he Windows
字符串分割 split()
str1.split(分割符,最大分割次数)
根据某个字符进行分割,返回一个列表
print(str1.split('and')) #['hello world ', 'Python ', ' Windows']
字符串连接 join()
连接符.join(拼接的序列)
#如以空格连接:
new_str = " ".join(["word1","word2","word3"])
print(new_str) #word1 word2 word3
大小写转换
所有字母换成小写 lower()
所有字母换成大写 upper()
把每个单词首字母大写 title()
把字符串的第一个单词的首字母转换成大写,其他变成小写 capitalize()
print(str1.lower())
print(str1.upper())
print(str1.title())
删除字符串前后的空格 strip()
只删除左边的空格 lstrip()
只删除右边的空格 rstrip()
print(" this one ".strip()) #this one
判断字符串是否以某个字符串开头 startswith()
print(str1.startswith('hel')) #true
print(str1.startswith('hes')) #false
判断字符串是否以某个字符串结尾 endswith()
print(str1.endswith('ows')) #true
print(str1.endswith('ow')) #false
判断数据类型
str1.isdigit() #判断字符串是否全部是数字
str2.isalpha() #判断字符串是否全部是字符
填充 ————了解一下
str2 = 'abcd'
#srt2.ljust(长度,填充的字符) 左填充
#str2.rjust(长度,填充的字符) 右填充
#str2.center(长度,填充的字符) #中间填充
#srt2.zfill(长度)) 0填充