python怎么将列表转为字符串
在python中,可以使用join()方法将列表转为字符串;join()方法用于将列表中的元素以指定的字符连接生成一个新的字符串,语法格式“'分隔符'.join(list)”。
本教程操作环境:windows7系统、python3.7版,DELL G3电脑
在python中,可以使用join()方法将列表转为字符串。
命令:''.join(list)
其中,引号中是字符之间的分割符,如“,”,“;”,“ ”等等
立即学习“Python免费学习笔记(深入)”;
如:
list = [1, 2, 3, 4, 5]
''.join(list) 结果即为:12345
','.join(list) 结果即为:1,2,3,4,5
实例:
str=[] #有的题目要输出字符串,但是有时候list更好操作,于是可以最后list转string提交 for i in range(0,a): str.append('M') str1=''.join(str)
【
文章推荐
-
python怎么读取txt
文件的打开的两种方式 f = open("data.txt","r") #设置文件对象 f.close() #关闭文...
Python
27秒前 1 -
python怎么读取图片?
python怎么读取图片?方法一:利用PIL中的Image函数,这个函数读取出来不是array格式这时候需要用 np.a...
Python
1分钟前 1 -
python变量为什么不能以数字开头
任何事情只要有人规定成文了,必定有其原因所在,也就是有其合理性所在。Python变量命名规则(推荐学习:Python视频...
Python
2分钟前 1 -
安装python后如何通过Python打开网页
python中可以通过selenium webdriver和webbrowser方法打开网页。一、selenium we...
Python
2分钟前 1 -
python卸载不了怎么办
python卸载不了怎么办?当点击Uninstall进行卸载时,出现报错:No Python 3.6 installat...
Python
3分钟前 1
最新文章
- python怎么读取txt 27秒前
- python怎么读取图片? 1分钟前
- python变量为什么不能以数字开头 2分钟前
- 安装python后如何通过Python打开网页 2分钟前
- python卸载不了怎么办 3分钟前
- python为什么不能以数字开头 4分钟前
- 怎么在cmd运行python 4分钟前
- 在电脑上怎么下载python 5分钟前
- python能做什么游戏 6分钟前
- python的线程join怎么用 6分钟前