字符串是Python中最流行的类型之一。 我们可以简单地通过将字符括在引号中来创建它们。 Python将单引号视为双引号。 创建字符串就像为变量赋值一样简单。 例如 -
var1 = 'Hello World!'
var2 = "Python Programming"
访问字符串
Python不支持字符类型; 这些被视为长度为1的字符串,因此也被视为子字符串。
要访问子字符串,请使用方括号与索引或索引一起切片以获取您的子字符串。 例如 -
#!/usr/bin/python3
var1 = 'Hello World!'
var2 = "Python Programming"
print ("var1[0]: ", var1[0])
print ("var2[1:5]: ", var2[1:5])
当上面的代码被执行时,它会产生以下结果 -
var1[0]: H
var2[1:5]: ytho
更新字符串
您可以通过(更新)将变量分配给另一个字符串来“更新”现有的字符串。 新值可以与其先前的值相关联,也可以与完全不同的字符串完全相关。 例如 -
#!/usr/bin/python3
var1 = 'Hello World!'
print ("Updated String :- ", var1[:6] + 'Python')
当上面的代码被执行时,它会产生以下结果 -
Updated String :- Hello Python
转义字符
下表是可用反斜线表示法表示的转义字符或不可打印字符的列表。
转义字符被解释; 在单引号以及双引号字符串中。
转义字符 | 描述 |
---|---|
\(在行尾时) | 续行符 |
\\ | 反斜杠符号 |
\' | 单引号 |
\" | 双引号 |
\a | 响铃 |
\b | 退格(Backspace) |
\e | 转义 |
\000 | 空 |
\n | 换行 |
\v | 纵向制表符 |
\t | 横向制表符 |
\r | 回车 |
\f | 换页 |
\oyy | 八进制数,yy代表的字符,例如:\o12代表换行 |
\xyy | 十六进制数,yy代表的字符,例如:\x0a代表换行 |
\other | 其它的字符以普通格式输出 |
Python字符串运算符
下表实例变量a值为字符串 "Hello",b变量值为 "Python"
操作符 | 描述 | 实例 |
---|---|---|
+ | 字符串连接 | a + b 输出结果: HelloPython |
* | 重复输出字符串 | a*2 输出结果:HelloHello |
[] | 通过索引获取字符串中字符 | a[1] 输出结果 e |
[ : ] | 截取字符串中的一部分 | a[1:4] 输出结果 ell |
in | 成员运算符 - 如果字符串中包含给定的字符返回 True | 'H' in a 输出结果 1 |
not in | 成员运算符 - 如果字符串中不包含给定的字符返回 True | 'M' not in a 输出结果 1 |
r/R | 原始字符串 - 原始字符串:所有的字符串都是直接按照字面的意思来使用,没有转义特殊或不能打印的字符。 原始字符串除在字符串的第一个引号前加上字母 r(可以大小写)以外,与普通字符串有着几乎完全相同的语法。 |
|
% | 格式字符串 | 请看下一节内容。 |
字符串格式化
支持格式化字符串的输出 。尽管这样可能会用到非常复杂的表达式,但最基本的用法是将一个值插入到一个有字符串格式符 %s 的字符串中。
在 Python 中,字符串格式化使用与 C 中 sprintf 函数一样的语法。
#!/usr/bin/python3
print ("My name is %s and weight is %d kg!" % ('Zara', 21))
当上面的代码被执行时,它会产生以下结果 -
My name is Zara and weight is 21 kg!
以下是可以与%一起使用的完整符号集列表 -
符 号 | 描述 |
---|---|
%c | 格式化字符及其ASCII码 |
%s | 格式化字符串 |
%d | 格式化整数 |
%u | 格式化无符号整型 |
%o | 格式化无符号八进制数 |
%x | 格式化无符号十六进制数 |
%X | 格式化无符号十六进制数(大写) |
%f | 格式化浮点数字,可指定小数点后的精度 |
%e | 用科学计数法格式化浮点数 |
%E | 作用同%e,用科学计数法格式化浮点数 |
%g | %f和%e的简写 |
%G | %f 和 %E 的简写 |
%p | 用十六进制数格式化变量的地址 |
下表中列出了其他支持的符号和功能 -
符号 | 功能 |
---|---|
* | 定义宽度或者小数点精度 |
- | 用做左对齐 |
+ | 在正数前面显示加号( + ) |
<sp> | 在正数前面显示空格 |
# | 在八进制数前面显示零('0'),在十六进制前面显示'0x'或者'0X'(取决于用的是'x'还是'X') |
0 | 显示的数字前面填充'0'而不是默认的空格 |
% | '%%'输出一个单一的'%' |
(var) | 映射变量(字典参数) |
m.n. | m 是显示的最小总宽度,n 是小数点后的位数(如果可用的话) |
Python三引号
Python的三重引号通过允许字符串跨越多行,包括逐字NEWLINE,TAB和任何其他特殊字符来解决问题。
三重引号的语法由三个连续的单引号或双引号组成。
#!/usr/bin/python3
para_str = """this is a long string that is made up of
several lines and non-printable characters such as
TAB ( \t ) and they will show up that way when displayed.
NEWLINEs within the string, whether explicitly given like
this within the brackets [ \n ], or just a NEWLINE within
the variable assignment will also show up.
"""
print (para_str)
当上面的代码执行时,它会产生以下结果。 请注意,每个特殊字符如何转换为其打印形式,直到“up”之间字符串末尾的最后一个NEWLINE。 并关闭三重报价。 另外请注意,NEWLINEs会在行末或其转义码(\n)&minus中显式回车;
this is a long string that is made up of
several lines and non-printable characters such as
TAB ( ) and they will show up that way when displayed.
NEWLINEs within the string, whether explicitly given like
this within the brackets [
], or just a NEWLINE within
the variable assignment will also show up.
原始字符串不会将反斜杠视为特殊字符。 你放入一个原始字符串的每个字符都是你写它的方式 −
#!/usr/bin/python3
print ('C:\\nowhere')
当上面的代码执行时,它会产生以下结果 −
C:\nowhere
现在让我们使用原始字符串。 我们会将表达式放在r'表达式'中,如下所示:
#!/usr/bin/python3
print (r'C:\\nowhere')
当上面的代码执行时,它会产生以下结果 −
C:\\nowhere
Unicode 字符串
在Python2中,普通字符串是以8位ASCII码进行存储的,而Unicode字符串则存储为16位unicode字符串,这样能够表示更多的字符集。使用的语法是在字符串前面加上前缀 u。
在Python3中,所有的字符串都是Unicode字符串。
Python 的字符串内建函数
序号 | 方法及描述 |
---|---|
1 | capitalize() |
2 | center(width, fillchar) |
3 | count(str, beg= 0,end=len(string)) |
4 | bytes.decode(encoding="utf-8", errors="strict") |
5 | encode(encoding='UTF-8',errors='strict') |
6 | endswith(suffix, beg=0, end=len(string)) |
7 | expandtabs(tabsize=8) |
8 | find(str, beg=0 end=len(string)) |
9 | index(str, beg=0, end=len(string)) |
10 | isalnum() |
11 | isalpha() |
12 | isdigit() |
13 | islower() |
14 | isnumeric() |
15 | isspace() |
16 | istitle() |
17 | isupper() |
18 | join(seq) |
19 | len(string) |
20 | ljust(width[, fillchar]) |
21 | lower() |
22 | lstrip() |
23 | maketrans() |
24 | max(str) |
25 | min(str) |
26 | replace(old, new [, max]) |
27 | rfind(str, beg=0,end=len(string)) |
28 | rindex( str, beg=0, end=len(string)) |
29 | rjust(width,[, fillchar]) |
30 | rstrip() |
31 | split(str="", num=string.count(str))
|
32 | splitlines([keepends]) |
33 | startswith(str, beg=0,end=len(string)) |
34 | strip([chars]) |
35 | swapcase() |
36 | title() |
37 | translate(table, deletechars="") |
38 | upper() |
39 | zfill (width) |
40 | isdecimal() |