python 列表转化为字符串的两种方式

Python 列表转化为字符串的两种方式

(1)方式一

Python代码  python 列表转化为字符串的两种方式
  1. >>> juice=['orange','a','b']  
  2. >>> ''.join(juice)  
  3. 'orangeab'  

 

 

(2)方式二:

Python代码  python 列表转化为字符串的两种方式
  1. >>> juice=['orange','a','b']  
  2. >>> content='%s'*len(juice) % tuple(juice)  
  3. >>> print content  
  4. orangeab  
  5. >>>  

 

参考网址:http://www.openstack.org.cn/bbs/forum.php?mod=viewthread&tid=506

上一篇:利用shell监控cpu、磁盘、内存使用率


下一篇:Freemarker教程2(表达式和常用指令)