python之字符串深入 python字符串讲解
更新时间:2023-12-26Python字符串深入
1. 字符串的定义和基本操作
在Python中,字符串是不可变的序列,可以用单引号、双引号、三引号表示。
s1 = 'hello' s2 = "world" s3 = '''hello world''' print(s1, s2, s3) # hello world hello\nworld #字符串拼接 s4 = s1 + ' ' + s2 print(s4) # hello world #字符串重复 s5 = s1 * 3 print(s5) # hellohellohello #字符串长度 print(len(s4)) # 11 #遍历字符串 for i in s4: print(i, end=' ') # h e l l o w o r l d #判断子串是否在字符串中 print('wo' in s4) # True