在Python中,字符串是一种非常常用的数据类型,可以进行许多操作。以下是一些常见的字符串操作:
str1 = "Hello"
str2 = "World"
str3 = str1 + " " + str2
print(str3) # 输出 "Hello World"
str = "Hello World"
sub_strs = str.split()
print(sub_strs) # 输出 ["Hello", "World"]
str = "Hello World"
new_str = str.replace("World", "Python")
print(new_str) # 输出 "Hello Python"
str = "Hello World"
index = str.find("World")
print(index) # 输出 6
str = "Hello {}"
new_str = str.format("Python")
print(new_str) # 输出 "Hello Python"
在Python中还有许多其他的字符串操作,以上只是其中的一部分。
领取专属 10元无门槛券
手把手带您无忧上云