常见的字符串操作有:
-
创建字符串:
# 使用单引号创建字符串 s1 = 'Hello, World!'# 使用双引号创建字符串 s2 = "Python Programming"# 使用三引号创建多行字符串 s3 = '''This is a multi-line string.'''
-
访问字符串中的字符:
s = 'Hello, World!' print(s[0]) # 输出:H print(s[7]) # 输出:W
-
字符串切片(获取子字符串):
s = 'Hello, World!' print(s[0:5]) # 输出:Hello print(s[7:]) # 输出:World!
-
字符串拼接:
s1 = 'Hello' s2 = 'World' s3 = s1 + ', ' + s2 print(s3) # 输出:Hello, World
-
字符串长度:
s = 'Hello, World!' print(len(s)) # 输出:13
-
字符串格式化:
name = 'Alice' age = 25 message = 'My name is {} and I am {} years old.'.format(name, age) print(message) # 输出:My name is Alice and I am 25 years old.
-
字符串方法:
Python 提供了许多字符串方法,用于处理和操作字符串,例如upper()
、lower()
、split()
、strip()
等。我们可以通过字符串变量名后加.
来调用这些方法,例如:s = 'Hello, World!' print(s.upper()) # 输出:HELLO, WORLD! print(s.split(',')) # 输出:['Hello', ' World!']