python中字符串如何转成列表

avatar
作者
筋斗云
阅读量:0

Python中,可以使用split()方法将字符串转换为列表。这个方法根据指定的分隔符将字符串分割成多个子字符串,并返回一个列表。

下面是一个示例:

string = "hello world" my_list = string.split() print(my_list) 

输出结果为:

['hello', 'world'] 

在上面的示例中,我们使用split()方法将字符串"hello world"按空格分割成两个子字符串,并赋值给变量my_list。然后,我们打印这个列表,输出结果为[‘hello’, ‘world’]。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!