码迷,mamicode.com
首页 > 编程语言 > 详细

python 基础 列表 字符串转换

时间:2017-10-27 01:54:01      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:pre   hello   str1   class   python   blog   split   logs   字符   

str1 = "hi hello world"
print(str1.split(" "))
输出:
[‘hi‘, ‘hello‘, ‘world‘]

 

2. 列表转字符串

l = ["hi","hello","world"]
print(" ".join(l))
输出:
hi hello world

python 基础 列表 字符串转换

标签:pre   hello   str1   class   python   blog   split   logs   字符   

原文地址:http://www.cnblogs.com/guxiaobei/p/7739729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!