在Python的命令行交互式环境中,你可以使用内置的字符串操作函数来处理字符串。以下是一些常用的字符串操作函数:
len(s)
+
运算符split(separator)
replace(old, new)
upper()
和 lower()
strip()
、lstrip()
和 rstrip()
format()
函数或 f-string(Python 3.6+)下面是一些示例:
# 字符串长度
s = "Hello, World!"
print(len(s)) # 输出:13
# 字符串拼接
s1 = "Hello"
s2 = "World"
print(s1 + " " + s2) # 输出:Hello World
# 字符串分割
s = "apple,banana,orange"
print(s.split(",")) # 输出:['apple', 'banana', 'orange']
# 字符串替换
s = "I love cats"
print(s.replace("cats", "dogs")) # 输出:I love dogs
# 字符串大小写转换
s = "Hello, World!"
print(s.upper()) # 输出:HELLO, WORLD!
print(s.lower()) # 输出:hello, world!
# 字符串去除空白
s = " Hello, World! "
print(s.strip()) # 输出:Hello, World!
print(s.lstrip()) # 输出:Hello, World!
print(s.rstrip()) # 输出: Hello, World!
# 字符串格式化
name = "Alice"
age = 30
print("My name is {} and I am {} years old.".format(name, age)) # 输出:My name is Alice and I am 30 years old.
print(f"My name is {name} and I am {age} years old.") # 输出:My name is Alice and I am 30 years old.
这些只是Python字符串操作函数的一部分。你可以根据需要使用其他函数来处理字符串。