博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 列表转化为字符串的两种方式
阅读量:5863 次
发布时间:2019-06-19

本文共 214 字,大约阅读时间需要 1 分钟。

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

(1)方式一

Python代码  
  1. >>> juice=['orange','a','b']  
  2. >>> ''.join(juice)  
  3. 'orangeab'  

 

 

(2)方式二:

Python代码  
  1. >>> juice=['orange','a','b']  
  2. >>> content='%s'*len(juice) % tuple(juice)  
  3. >>> print content  
  4. orangeab  
  5. >>>  

 

参考网址:

转载地址:http://iofnx.baihongyu.com/

你可能感兴趣的文章
maven 依赖文件 pom.xml 编译 mvn compile 运行 不用mvn exec:java -Dexec.mainClass="hello.HelloWorld"...
查看>>
Qt5 Cmake
查看>>
搭建java环境(Eclipse为例)
查看>>
Mysql远程连接配置
查看>>
170. Two Sum III - Data structure design - Easy
查看>>
git分支branch合并到主分支master
查看>>
* average vector from multiple files--Matlab
查看>>
Python3下安装Scrapy
查看>>
selenium登录界面,创建表单并填写提交
查看>>
优秀程序员要做到的十点
查看>>
清除子元素浮动方法总结
查看>>
Struts2入门3 深入学习
查看>>
js中报Uncaught TypeError: Cannot read property 'length' of undefined
查看>>
Problem G
查看>>
nginx学习之反向代理篇(六)
查看>>
sublime中Emment插件用法
查看>>
mysql
查看>>
T-SQL 数据插入操作解析
查看>>
ECMAScript 5 —— 变量类型
查看>>
指针传递
查看>>