要将字符串转换为列表,可以使用split()
函数。split()
函数将字符串按照指定的分隔符分割,并返回一个包含分割后的各个子字符串的列表。默认的分隔符是空格。
下面是一个将字符串转换为列表的示例代码:
string = "Hello World"
lst = string.split()
print(lst)
运行结果为:
['Hello', 'World']
如果要按照其他的分隔符进行分割,可以在split()
函数中传入相应的分隔符作为参数,例如:
string = "Hello,World"
lst = string.split(",")
print(lst)
运行结果为:
['Hello', 'World']