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

python之字符串连接

时间:2018-02-07 00:52:08      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:建立   元素   blank   函数   pre   sdn   ref   pos   tail   

join 
就属于技巧了,利用字符串的函数 join 。这个函数接受一个列表,然后用字符串依次连接列表中每一个元素:

 

str_list = [‘Pyt‘, ‘hon‘]
a = ‘‘
print a.join(str_list)

步骤:

 

  1、建立一个列表

  2、利用 join()

 

原文链接  

python之字符串连接

标签:建立   元素   blank   函数   pre   sdn   ref   pos   tail   

原文地址:https://www.cnblogs.com/laowangball/p/8424446.html

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