代码示例:(标识:python_string_split)
python_string_split.py
a = "Hello, World!"
b = a.split(",")
print(b)
运行结果: