Python中,可以使用split()方法将字符串转换为列表。这个方法根据指定的分隔符将字符串分割成多个子字符串,并返回一个列表。
下面是一个示例:
string = "hello world"
my_list = string.split()
print(my_list)
输出结果为:
['hello', 'world']
在上面的示例中,我们使用split()方法将字符串"hello world"按空格分割成两个子字符串,并赋值给变量my_list。然后,我们打印这个列表,输出结果为[‘hello’, ‘world’]。