在Python中,可以使用多种方法来实现字符串分隔。以下是一些常见的方法:
split()
方法:string = "Hello,World"
result = string.split(",")
print(result)
输出:
['Hello', 'World']
import re
string = "Hello,World"
result = re.split(",", string)
print(result)
输出:
['Hello', 'World']
string = "Hello,World"
result = [x for x in string.split(",")]
print(result)
输出:
['Hello', 'World']
re.findall()
方法:import re
string = "Hello,World"
result = re.findall("[^,]+", string)
print(result)
输出:
['Hello', 'World']
以上是一些Pythonic的方式来实现字符串分隔。
领取专属 10元无门槛券
手把手带您无忧上云