s1 = 'hello, world!'
s2 = "你好,世界!"
print(s1, s2)
# 以三个双引号或单引号开头的字符串可以折⾏
s3 = '''
hello,
world!
'''
print(s3, end='')
s1 = '\'hello, world!\''
print(s1)
s2 = '\\hello, world!\\'
print(s2)
# 字符串s1中\t是制表符,\n是换⾏符
s1 = '\time up \now'
print(s1)
# 字符串s2中没有转义字符,每个字符都是原始含义
s2 = r'\time up \now'
print(s2)
s1 = '\141\142\143\x61\x62\x63'
s2 = '\u9a86\u660a'
print(s1, s2)
s1 = 'hello' + ' ' + 'world'
print(s1) # hello world
s2 = '!' * 3
print(s2) # !!!
s1 += s2 # s1 = s1 + s2
print(s1) # hello world!!!
s1 *= 2 # s1 = s1 * 2
print(s1) # hello world!!!hello world!!!
s1 = 'a whole new world'
s2 = 'hello world'
print(s1 == s2, s1 < s2) # False True
print(s2 == 'hello world') # True
print(s2 == 'Hello world') # False
print(s2 != 'Hello world') # True
s3 = '张三'
print(ord('张'), ord('三')) # 39558 26122
s4 = '王⼤锤'
print(ord('王'), ord('⼤'), ord('锤')) # 29579 22823 38180
print(s3 > s4, s3 <= s4) # True False
s1 = 'hello world'
s2 = 'hello world'
s3 = s2
# ⽐较字符串的内容
print(s1 == s2, s2 == s3) # True True
# ⽐较字符串的内存地址
print(s1 is s2, s2 is s3) # False True
s1 = 'hello, world'
print('wo' in s1) # True
s2 = 'goodbye'
print(s2 in s1) # False
s = 'hello, world'
print(len(s)) # 12
print(len('goodbye, world')) # 14
s = 'abc123456'
N = len(s)
# 获取第⼀个字符
print(s[0], s[-N]) # a a
# 获取最后⼀个字符
print(s[N-1], s[-1]) # 6 6
# 获取索引为2或-7的字符
print(s[2], s[-7]) # c c
# 获取索引为5和-4的字符
print(s[5], s[-4]) # 3 3
s = 'abc123456'
# i=2, j=5, k=1的正向切⽚操作
print(s[2:5]) # c12
# i=-7, j=-4, k=1的正向切⽚操作
print(s[-7:-4]) # c12
# i=2, j=9, k=1的正向切⽚操作
print(s[2:]) # c123456
# i=-7, j=9, k=1的正向切⽚操作
print(s[-7:]) # c123456
# i=2, j=9, k=2的正向切⽚操作
print(s[2::2]) # c246
# i=-7, j=9, k=2的正向切⽚操作
print(s[-7::2]) # c246
# i=0, j=9, k=2的正向切⽚操作
print(s[::2]) # ac246
# i=1, j=-1, k=2的正向切⽚操作
print(s[1:-1:2]) # b135
# i=7, j=1, k=-1的负向切⽚操作
print(s[7:1:-1]) # 54321c
# i=-2, j=-8, k=-1的负向切⽚操作
print(s[-2:-8:-1]) # 54321c
# i=7, j=-10, k=-1的负向切⽚操作
print(s[7::-1]) # 54321cba
# i=-1, j=1, k=-1的负向切⽚操作
print(s[:1:-1]) # 654321c
# i=0, j=9, k=1的正向切⽚
print(s[:]) # abc123456
# i=0, j=9, k=2的正向切⽚
print(s[::2]) # ac246
# i=-1, j=-10, k=-1的负向切⽚
print(s[::-1]) # 654321cba
# i=-1, j=-10, k=-2的负向切⽚
print(s[::-2]) # 642ca
s1 = 'hello'
for index in range(len(s1)):
print(s1[index])
s1 = 'hello'
for ch in s1:
print(ch)
s1 = 'hello, world!'
# 使⽤capitalize⽅法获得字符串⾸字⺟⼤写后的字符串
print(s1.capitalize()) # Hello, world!
# 使⽤title⽅法获得字符串每个单词⾸字⺟⼤写后的字符串
print(s1.title()) # Hello, World!
# 使⽤upper⽅法获得字符串⼤写后的字符串
print(s1.upper()) # HELLO, WORLD!
s2 = 'GOODBYE'
# 使⽤lower⽅法获得字符串⼩写后的字符串
print(s2.lower()) # goodbye
s = 'hello, world!'
# find⽅法从字符串中查找另⼀个字符串所在的位置
# 找到了返回字符串中另⼀个字符串⾸字符的索引
print(s.find('or')) # 8
# 找不到返回-1
print(s.find('shit')) # -1
# index⽅法与find⽅法类似
# 找到了返回字符串中另⼀个字符串⾸字符的索引
print(s.index('or')) # 8
# 找不到引发异常
print(s.index('shit')) # ValueError: substring not found
s = 'hello good world!'
# 从前向后查找字符o出现的位置(相当于第⼀次出现)
print(s.find('o')) # 4
# 从索引为5的位置开始查找字符o出现的位置
print(s.find('o', 5)) # 7
# 从后向前查找字符o出现的位置(相当于最后⼀次出现)
print(s.rfind('o')) # 12
s1 = 'hello, world!'
# startwith⽅法检查字符串是否以指定的字符串开头返回布尔值
print(s1.startswith('He')) # False
print(s1.startswith('hel')) # True
# endswith⽅法检查字符串是否以指定的字符串结尾返回布尔值
print(s1.endswith('!')) # True
s2 = 'abc123456'
# isdigit⽅法检查字符串是否由数字构成返回布尔值
print(s2.isdigit()) # False
# isalpha⽅法检查字符串是否以字⺟构成返回布尔值
print(s2.isalpha()) # False
# isalnum⽅法检查字符串是否以数字和字⺟构成返回布尔值
print(s2.isalnum()) # True
s = 'hello, world'
# center⽅法以宽度20将字符串居中并在两侧填充*
print(s.center(20, '*')) # ****hello, world****
# rjust⽅法以宽度20将字符串右对⻬并在左侧填充空格
print(s.rjust(20)) # hello, world
# ljust⽅法以宽度20将字符串左对⻬并在右侧填充~
print(s.ljust(20, '~')) # hello, world~~~~~~~~
a = 321
b = 123
print('%d * %d = %d' % (a, b, a * b))
a = 321
b = 123
print('{0} * {1} = {2}'.format(a, b, a * b))
a = 321
b = 123
print(f'{a} * {b} = {a * b}')
变量值
|
占位符
|
格式化结果
|
说明
|
3.1415926
|
{:.2f}
|
'3.14'
|
保留⼩数点后两位
|
3.1415926
|
{:+.2f}
|
'+3.14'
|
带符号保留⼩数点后两位
|
-1
|
{:+.2f}
|
'-1.00'
|
带符号保留⼩数点后两位
|
3.1415926
|
{:.0f}
|
'3'
|
不带⼩数
|
123
|
{:0>10d}
|
0000000123
|
左边补 0 ,补够 10 位
|
123
|
{:x<10d}
|
123xxxxxxx
|
右边补 x ,补够 10 位
|
123
|
{:>10d}
|
' 123'
|
左边补空格,补够 10 位
|
123
|
{:<10d}
|
'123 '
|
右边补空格,补够 10 位
|
123456789
|
{:,}
|
'123,456,789'
|
逗号分隔格式
|
0.123
|
{:.2%}
|
'12.30%'
|
百分⽐格式
|
123456789
|
{:.2e}
|
'1.23e+08'
|
科学计数法格式
|
s = ' [email protected] \t\r\n'
# strip⽅法获得字符串修剪左右两侧空格之后的字符串
print(s.strip()) # [email protected]